From 24847aa923059e9cb1544fcb8e672438e1a31119 Mon Sep 17 00:00:00 2001 From: v-jkegler Date: Mon, 4 Nov 2024 17:43:14 -0500 Subject: [PATCH] Fix typo (#40) Fix typo --- parser/src/earley/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/src/earley/parser.rs b/parser/src/earley/parser.rs index ed241a8c..ab9d0759 100644 --- a/parser/src/earley/parser.rs +++ b/parser/src/earley/parser.rs @@ -626,7 +626,7 @@ impl ParserState { // apply_tokens() "pushes" the bytes in 'tokens' into the lexer and parser. It is a top-level // method in this file. It is well below llguidance's top-level methods, but in the llguidance - // LLinterpreter interface, it is called indirectly via the advance_parser() method. + // LLInterpreter interface, it is called indirectly via the advance_parser() method. pub fn apply_tokens( &mut self, shared: &mut SharedState,