]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/prettyprint/sections/sections-docs.factor
docs: change ``{ $quotation "( x -- y )" }`` to ``{ $quotation ( x -- y ) }``.
[factor.git] / basis / prettyprint / sections / sections-docs.factor
index 0bf11454aba2968bcd39850915481edf9af5af7a..ef90f9b9ef22d4757d9c0cb0bd78d927380d2430 100644 (file)
@@ -144,7 +144,7 @@ HELP: save-end-position
 { $description "Save the current position as the end position of the block." } ;
 
 HELP: pprint-sections
-{ $values { "block" block } { "advancer" { $quotation "( block -- )" } } }
+{ $values { "block" block } { "advancer" { $quotation ( block -- ) } } }
 { $description "Prints child sections of a block, ignoring any " { $link line-break } " sections. The " { $snippet "advancer" } " quotation is called between every pair of sections." } ;
 
 HELP: do-break
@@ -156,7 +156,7 @@ HELP: empty-block?
 { $description "Tests if the block has no child sections." } ;
 
 HELP: if-nonempty
-{ $values { "block" block } { "quot" { $quotation "( block -- )" } } }
+{ $values { "block" block } { "quot" { $quotation ( block -- ) } } }
 { $description "If the block has child sections, calls the quotation, otherwise does nothing." } ;
 
 HELP: (<block)