We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b25e66 commit 20befb7Copy full SHA for 20befb7
dictionary/parser.ts
@@ -49,7 +49,7 @@ const colon = matchString(":", "colon");
49
const character = match(/./u, "character");
50
const wordCharacter = match(
51
new RegExp(`[^${escapeRegex(RESERVED_SYMBOLS)}]`),
52
- "word",
+ "word character",
53
);
54
const tokiPonaWord = lex(match(/[a-z][a-zA-Z]*/, "word"));
55
const openParenthesis = lex(matchString("(", "open parenthesis"));
0 commit comments