From a2611a2c549e01fa76f83c56a67f2b635f455a8f Mon Sep 17 00:00:00 2001 From: Michal Moskal Date: Fri, 15 Nov 2024 08:38:47 -0800 Subject: [PATCH] fix build --- parser/src/earley/parser.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser/src/earley/parser.rs b/parser/src/earley/parser.rs index 5765755..a3b1c27 100644 --- a/parser/src/earley/parser.rs +++ b/parser/src/earley/parser.rs @@ -573,8 +573,8 @@ impl ParserState { /// the number of Earley sets. #[inline(always)] pub fn num_rows(&self) -> usize { - /// The number of rows is taken, not from the physical Earley table, - /// but from the virtual Earley stack kept in the lexer state. + // The number of rows is taken, not from the physical Earley table, + // but from the virtual Earley stack kept in the lexer state. self.lexer_state().row_idx as usize + 1 }