summaryrefslogtreecommitdiff
path: root/grammar/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'grammar/src/lib.rs')
-rw-r--r--grammar/src/lib.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/grammar/src/lib.rs b/grammar/src/lib.rs
index 135f668..11cb161 100644
--- a/grammar/src/lib.rs
+++ b/grammar/src/lib.rs
@@ -8,8 +8,6 @@
// words, the current focus is not on the optimisations, whereas
// scanners are for optimisations only, so to speak.
-// REVIEW: Separate contents into modules.
-
use nfa::{
default::{
nfa::DefaultNFA,
@@ -37,8 +35,8 @@ pub const START_NONTERMINAL: usize = 0;
/// future it may hold more information of scanners.
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Terminal {
- // If we want to use scanners, per chance add them as a new field
- // here.
+ // NOTE: If we want to use scanners, per chance add them as a new
+ // field here.
name: String,
}