]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/locals/locals-docs.factor
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / basis / locals / locals-docs.factor
index c07255547fac6b59c328f0e8911ee68f11315272..eb368936d408e0c7e3301a807d2a2ff9d2c04a3c 100644 (file)
@@ -65,7 +65,7 @@ HELP: [wlet
 
 HELP: ::
 { $syntax ":: word ( bindings... -- outputs... ) body... ;" }
-{ $description "Defines a word with named inputs; it reads stack values into bindings from left to right, then executes the body with those bindings in lexical scope. Any " { $link POSTPONE: [| } ", " { $link POSTPONE: [let } " or " { $link POSTPONE: [wlet } " forms used in the body of the word definition are automatically closure-converted." }
+{ $description "Defines a word with named inputs; it reads stack values into bindings from left to right, then executes the body with those bindings in lexical scope." }
 { $notes "The output names do not affect the word's behavior, however the compiler attempts to check the stack effect as with other definitions." }
 { $examples "See " { $link POSTPONE: [| } ", " { $link POSTPONE: [let } " and " { $link POSTPONE: [wlet } "." } ;