]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/combinators/short-circuit/smart/smart-docs.factor
factor: trim using lists
[factor.git] / basis / combinators / short-circuit / smart / smart-docs.factor
index 941069cc006c4927e643919d1f48f80b32830230..10695086a09858493dd3e079c175327a4a379a6f 100644 (file)
@@ -1,13 +1,13 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: help.markup help.syntax io.streams.string quotations ;
+USING: help.markup help.syntax quotations ;
 IN: combinators.short-circuit.smart
 
 HELP: &&
 { $values
      { "quots" "a sequence of quotations" }
      { "quot" quotation } }
-{ $description "Infers the number of arguments that each quotation takes from the stack. Eacn quotation must take the same number of arguments. Returns true if every quotation yields true, and stops early if one yields false." }
+{ $description "Infers the number of arguments that each quotation takes from the stack. Each quotation must take the same number of arguments. Returns true if every quotation yields true, and stops early if one yields false." }
 { $examples "Smart combinators will infer the two inputs:"
     { $example "USING: prettyprint kernel math combinators.short-circuit.smart ;"
     "2 3 { [ + 5 = ] [ - -1 = ] } && ."
@@ -19,7 +19,7 @@ HELP: ||
 { $values
      { "quots" "a sequence of quotations" }
      { "quot" quotation } }
-{ $description "Infers the number of arguments that each quotation takes from the stack. Eacn quotation must take the same number of arguments. Returns true if any quotation yields true, and stops early when one yields true." }
+{ $description "Infers the number of arguments that each quotation takes from the stack. Each quotation must take the same number of arguments. Returns true if any quotation yields true, and stops early when one yields true." }
 { $examples "Smart combinators will infer the two inputs:"
     { $example "USING: prettyprint kernel math combinators.short-circuit.smart ;"
     "2 3 { [ - 1 = ] [ + 5 = ] } || ."