]> gitweb.factorcode.org Git - factor.git/commitdiff
peg.ebnf: fix typo in ebnf.factor 2724/head
authorIkko Ashimine <eltociear@gmail.com>
Fri, 16 Dec 2022 07:31:05 +0000 (16:31 +0900)
committerGitHub <noreply@github.com>
Fri, 16 Dec 2022 07:31:05 +0000 (16:31 +0900)
identifer -> identifier

basis/peg/ebnf/ebnf.factor

index 599611ec358f0830c14ba3845fe1b8eed417eeb9..e7ed0ed1ed14592962a2d4a0e982f87294e8d047 100644 (file)
@@ -107,7 +107,7 @@ C: <ebnf> ebnf
     ] choice* replace ;
 
 : identifier-parser ( -- parser )
-    ! Return a parser that parses an identifer delimited by
+    ! Return a parser that parses an identifier delimited by
     ! a quotation character. The quotation can be single
     ! or double quotes. The AST produced is the identifier
     ! between the quotes.