]> gitweb.factorcode.org Git - factor.git/commitdiff
fry: fix $values for fry.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sun, 22 Nov 2020 17:03:05 +0000 (09:03 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 22 Nov 2020 17:03:05 +0000 (09:03 -0800)
core/fry/fry-docs.factor

index 4d0b5b2dfd315c5006c2482258613fe105e5c982..ecda05b6dcff9f4891db27b1a6eb22d594458634 100644 (file)
@@ -10,7 +10,7 @@ HELP: @
 { $examples "See " { $link "fry.examples" } "." } ;
 
 HELP: fry
-{ $values { "object" object } { "quot'" quotation } }
+{ $values { "object" object } { "quot" quotation } }
 { $description "Outputs a quotation that when called, fries " { $snippet "object" } " by taking values from the stack and substituting them in." }
 { $notes "This word is used to implement " { $link POSTPONE: '[ } "; the following two lines are equivalent:"
     { $code "[ X ] fry call" "'[ X ]" }