]> gitweb.factorcode.org Git - factor.git/commitdiff
more fussing over locals docs grammar
authorJoe Groff <arcata@gmail.com>
Sun, 24 Jan 2010 18:05:56 +0000 (10:05 -0800)
committerJoe Groff <arcata@gmail.com>
Sun, 24 Jan 2010 18:05:56 +0000 (10:05 -0800)
basis/locals/locals-docs.factor

index 4c4b4ad485c8044177d0a77f1f6f51c222a7a46d..d78905c0d7629b34c1ad3f2b132662a4ef49c6de 100644 (file)
@@ -209,7 +209,7 @@ $nl
 ARTICLE: "locals-mutable" "Mutable lexical variables"
 "When a lexical variable is bound using " { $link POSTPONE: :> } ", " { $link POSTPONE: :: } ", or " { $link POSTPONE: [| } ", the variable may be made mutable by suffixing its name with an exclamation point (" { $snippet "!" } "). A mutable variable's value is read by giving its name without the exclamation point as usual. To write to the variable, use its name with the " { $snippet "!" } " suffix."
 $nl
-"Mutable bindings are implemented in a manner similar to the ML language; each mutable binding is actually an immutable binding of a mutable cell. Reading the binding automatically unboxes the value from the cell, and writing to the binding stores into it."
+"Mutable bindings are implemented in a manner similar to that taken by the ML language. Each mutable binding is actually an immutable binding of a mutable cell. Reading the binding automatically unboxes the value from the cell, and writing to the binding stores into it."
 $nl
 "Writing to mutable variables from outer lexical scopes is fully supported and has full closure semantics. See " { $link "locals-examples" } " for examples of mutable lexical variables in action." ;