From aadf4493fb2ff4ae3f2834752ccfa73b402eaeff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Moskal?= Date: Thu, 26 Sep 2024 08:35:00 -0700 Subject: [PATCH] Update parser/src/earley/parser.rs --- 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 c3737328..bc98f354 100644 --- a/parser/src/earley/parser.rs +++ b/parser/src/earley/parser.rs @@ -247,7 +247,7 @@ impl Scratch { } // Set current working Earley set to the single item - // at 'pos' in the Earley table. + // The set backing data is at `pos` fn new_row(&mut self, pos: usize) { self.row_start = pos; self.row_end = pos;