]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/ui/gadgets/panes/panes-docs.factor
docs: change ``{ $quotation "( x -- y )" }`` to ``{ $quotation ( x -- y ) }``.
[factor.git] / basis / ui / gadgets / panes / panes-docs.factor
index ce2870ba05fa3d61e42aed44ee25cd85fd6d55a9..2e30584b1d77ad41471e42b4c126b8c75fb47b35 100644 (file)
@@ -35,7 +35,7 @@ HELP: make-pane
 { $description "Calls the quotation in a new scope where " { $link output-stream } " is rebound to a " { $link pane-stream } " writing to a new pane. The output area of the new pane is output on the stack after the quotation returns. The pane itself is not output." } ;
 
 HELP: <pane-control>
-{ $values { "model" model } { "quot" { $quotation "( value -- )" } } { "pane" "a new " { $link pane } } }
+{ $values { "model" model } { "quot" { $quotation ( value -- ) } } { "pane" "a new " { $link pane } } }
 { $description "Creates a new control delegating to a " { $link pane } ". When the value of the model changes, the value is pushed on the stack and the quotation is called using " { $link with-pane } "." } ;
 
 HELP: pane-stream