]> gitweb.factorcode.org Git - factor.git/commitdiff
parser: fix docs typo.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 16 Mar 2016 19:36:08 +0000 (12:36 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 16 Mar 2016 19:36:08 +0000 (12:36 -0700)
core/parser/parser-docs.factor

index 45d24c3cf6b43fa45c79a52a85374e056e0191b2..f2e348e41400ec5b55c42557ef154c9ee9dde76b 100644 (file)
@@ -52,7 +52,7 @@ ARTICLE: "defining-words" "Defining words"
 "There are additional parsing words whose syntax is delimited by " { $link POSTPONE: ; } ", and they are all implemented by calling " { $link parse-definition } "." ;
 
 ARTICLE: "parsing-tokens" "Parsing raw tokens"
-"So far we have seen how to read individual tokens, or read a  of parsed objects until a delimiter. It is also possible to read raw tokens from the input and perform custom processing."
+"So far we have seen how to read individual tokens, or read a sequence of parsed objects until a delimiter. It is also possible to read raw tokens from the input and perform custom processing."
 $nl
 "One example is the " { $link POSTPONE: USING: } " parsing word."
 { $see POSTPONE: USING: }