]> gitweb.factorcode.org Git - factor.git/commitdiff
literals-docs: fix a copy-paste error
authorAlexander Iljin <ajsoft@yandex.ru>
Mon, 13 Apr 2020 18:21:17 +0000 (20:21 +0200)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 13 Apr 2020 19:33:42 +0000 (19:33 +0000)
basis/literals/literals-docs.factor

index 67219dacfb2073d68a30c83416b7997ee75373b5..96c0e5a9e743b18c2e5ba609747006bd74b7cc04 100644 (file)
@@ -44,7 +44,7 @@ HELP: $[
 HELP: ${
 { $syntax "${ code }" }
 { $description "Outputs an array containing the results of executing " { $snippet "code" } " at parse time." }
-{ $notes { $snippet "code" } "'s definition is looked up and " { $link call } "ed at parse time, so words that reference words in the current compilation unit cannot be used with " { $snippet "$" } "." }
+{ $notes { $snippet "code" } "'s definition is looked up and " { $link call } "ed at parse time, so words that reference words in the current compilation unit cannot be used with " { $snippet "${" } "." }
 { $examples
     { $example
         "USING: kernel literals math prettyprint ;"