literals-docs: fix a copy-paste error

master
Alexander Iljin 2020-04-13 20:21:17 +02:00 committed by John Benediktsson
parent 97b07d9972
commit 7cda5f7e53
1 changed files with 1 additions and 1 deletions
basis/literals

View 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 ;"