]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/combinators/short-circuit/smart/smart-docs.factor
factor: fix some spacing
[factor.git] / basis / combinators / short-circuit / smart / smart-docs.factor
index 10695086a09858493dd3e079c175327a4a379a6f..8b0a784613b96846eb360819dd60c866b8921706 100644 (file)
@@ -5,8 +5,8 @@ IN: combinators.short-circuit.smart
 
 HELP: &&
 { $values
-     { "quots" "a sequence of quotations" }
-     { "quot" quotation } }
+    { "quots" "a sequence of quotations" }
+    { "quot" quotation } }
 { $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 ;"
@@ -17,8 +17,8 @@ HELP: &&
 
 HELP: ||
 { $values
-     { "quots" "a sequence of quotations" }
-     { "quot" quotation } }
+    { "quots" "a sequence of quotations" }
+    { "quot" quotation } }
 { $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 ;"