]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/promises/promises-docs.factor
factor: clean up whitespace in -docs files
[factor.git] / basis / promises / promises-docs.factor
index 4bf309c23818bba8e7b104bf4a99e6f427f18cdf..9c26923114a8c8d6f17a415a5f98f2e7a5d33a6b 100644 (file)
@@ -14,7 +14,7 @@ HELP: force
 HELP: LAZY:
 { $syntax "LAZY: word ( stack -- effect ) definition... ;" }
 { $values { "word" "a new word to define" } { "definition" "a word definition" } }
-{ $description "Creates a lazy word in the current vocabulary. When executed the word will return a " { $link promise } " that when forced, executes the word definition. Any values on the stack that are required by the word definition are captured along with the promise." } 
+{ $description "Creates a lazy word in the current vocabulary. When executed the word will return a " { $link promise } " that when forced, executes the word definition. Any values on the stack that are required by the word definition are captured along with the promise." }
 { $examples
   { $example "USING: arrays sequences prettyprint promises ;" "IN: scratchpad" "LAZY: zeroes ( -- pair ) 0 zeroes 2array ;" "zeroes force second force first ." "0" }
 } ;