From 6dd87a73f1e996918ed42a5aa3606c6e4168dbdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Moskal?= Date: Thu, 26 Sep 2024 08:35:05 -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 bc98f354..c0f05291 100644 --- a/parser/src/earley/parser.rs +++ b/parser/src/earley/parser.rs @@ -246,7 +246,7 @@ impl Scratch { } } - // Set current working Earley set to the single item + // Set current working Earley to empty set // The set backing data is at `pos` fn new_row(&mut self, pos: usize) { self.row_start = pos;