]> gitweb.factorcode.org Git - factor.git/commitdiff
strings.parser: fix docs for parse-string.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 4 Apr 2016 22:01:43 +0000 (15:01 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 4 Apr 2016 22:01:43 +0000 (15:01 -0700)
core/strings/parser/parser-docs.factor

index 8f912a028765d8e41c0c68966eab35d38710561f..3079f108e694e48607626bc474487c88a024d144 100644 (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." }