X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=blobdiff_plain;f=basis%2Fpromises%2Fpromises-docs.factor;h=db45ca339c4851aa3c652ca3ab301a012016e44c;hp=9c26923114a8c8d6f17a415a5f98f2e7a5d33a6b;hb=6d4293b5822d769619f66e46e64b704ddfe41b43;hpb=b7bb69b178712e9d135362ebd6efa69c9b8371ba diff --git a/basis/promises/promises-docs.factor b/basis/promises/promises-docs.factor index 9c26923114..db45ca339c 100644 --- a/basis/promises/promises-docs.factor +++ b/basis/promises/promises-docs.factor @@ -5,7 +5,7 @@ IN: promises HELP: { $values { "quot" { $quotation ( -- x ) } } { "promise" "a promise object" } } -{ $description "Creates a promise to return a value. When forced this quotation is called and the value returned. The value is memorised so that calling " { $link force } " again does not call the quotation again, instead the previous value is returned directly." } ; +{ $description "Creates a promise to return a value. When forced this quotation is called and the value returned. The value is memorized so that calling " { $link force } " again does not call the quotation again, instead the previous value is returned directly." } ; HELP: force { $values { "promise" "a promise object" } { "value" "a factor object" } }