strings.parser: fix docs for parse-string.

locals-and-roots
John Benediktsson 2016-04-04 15:01:43 -07:00
parent 4d83867cb4
commit 6dd1172a8d
1 changed files with 1 additions and 7 deletions

View File

@ -9,13 +9,7 @@ HELP: escape
{ $description "Converts from a single-character escape code and the corresponding character." }
{ $examples { $example "USING: kernel prettyprint strings.parser ;" "CHAR: n escape CHAR: \\n = ." "t" } } ;
HELP: parse-short-string
{ $values { "str" "a new " { $link string } } }
{ $description "Parses the line until a quote (\"), interpreting escape codes along the way." }
{ $errors "Throws an error if the string contains an invalid escape sequence." }
$parsing-note ;
HELP: parse-full-string
HELP: parse-string
{ $values { "str" "a new " { $link string } } }
{ $description "Parses one or more lines until a quote (\"), interpreting escape codes along the way." }
{ $errors "Throws an error if the string contains an invalid escape sequence." }