Skip to content

Commit 0840458

Browse files
minor change
1 parent 03f286c commit 0840458

31 files changed

+2
-950
lines changed

compiler/src/nfa/codegen/noir.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,13 @@ pub fn generate_noir_code(
179179
if nfa.num_capture_groups > 0 {
180180
for i in 1..=nfa.num_capture_groups {
181181
code.push_str(&format!(
182-
" capture_group_{}_ids: [Field; MAX_MATCH_LEN],\n",
182+
" capture_group_{}_id: [Field; MAX_MATCH_LEN],\n",
183183
i
184184
));
185185
}
186186
for i in 1..=nfa.num_capture_groups {
187187
code.push_str(&format!(
188-
" capture_group_{}_starts: [Field; MAX_MATCH_LEN],\n",
188+
" capture_group_{}_start: [Field; MAX_MATCH_LEN],\n",
189189
i
190190
));
191191
}

noir/src/common/body_hash_regex.nr

Lines changed: 0 additions & 112 deletions
This file was deleted.

noir/src/common/email_addr_regex.nr

Lines changed: 0 additions & 112 deletions
This file was deleted.

0 commit comments

Comments
 (0)