]> gitweb.factorcode.org Git - factor.git/commitdiff
peg.parsers-docs: fix some typos
authorAlexander Iljin <ajsoft@yandex.ru>
Sun, 22 Nov 2020 21:53:24 +0000 (22:53 +0100)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 26 Feb 2021 00:22:31 +0000 (18:22 -0600)
basis/peg/parsers/parsers-docs.factor

index ef3350f93cd51a029cb1cc9f42bc573a9c7138d1..5e2026bf1d26062d9ea0251068a7514aff2f45c2 100644 (file)
@@ -61,7 +61,7 @@ HELP: any-char
 { $values
     { "parser" "a parser" }
 } { $description
-    "Returns a parser that matches the any single character."
+    "Returns a parser that matches any single character."
 } ;
 
 HELP: exactly-n
@@ -166,7 +166,7 @@ HELP: range-pattern
     { "parser" "a parser" }
 } { $description
 "Returns a parser that matches a single character based on the set "
-"of characters in the pattern string."
+"of characters in the pattern string. "
 "Any single character in the pattern matches that character. "
 "If the pattern begins with a ^ then the set is negated "
 "(the element matches any character not in the set). Any pair "