]> gitweb.factorcode.org Git - factor.git/commitdiff
move the article down
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 15 Sep 2008 04:32:25 +0000 (23:32 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 15 Sep 2008 04:32:25 +0000 (23:32 -0500)
basis/columns/columns-docs.factor

index 818ce2f75283b6366315f9c93f5b292bb18aeade..27dc1608127e35241dc034124024b8038b40eaca 100644 (file)
@@ -1,13 +1,6 @@
 USING: help.markup help.syntax sequences ;
 IN: columns
 
-ARTICLE: "columns" "Column sequences"
-"A " { $emphasis "column" } " presents a column of a matrix represented as a sequence of rows:"
-{ $subsection column }
-{ $subsection <column> }
-"A utility word:"
-{ $subsection <flipped> } ;
-
 HELP: column
 { $class-description "A virtual sequence which presents a fixed column of a matrix represented as a sequence of rows. New instances can be created by calling " { $link <column> } "." } ;
 
@@ -30,4 +23,11 @@ HELP: <flipped>
 { $description "Outputs a new virtual sequence which presents the transpose of " { $snippet "seq" } "." }
 { $notes "This is the virtual sequence equivalent of " { $link flip } "." } ;
 
+ARTICLE: "columns" "Column sequences"
+"A " { $emphasis "column" } " presents a column of a matrix represented as a sequence of rows:"
+{ $subsection column }
+{ $subsection <column> }
+"A utility word:"
+{ $subsection <flipped> } ;
+
 ABOUT: "columns"