Updated one more reference to epsilon

This commit is contained in:
2025-01-30 10:39:00 -05:00
parent be60f2fb51
commit b8f5b9af7c

View File

@@ -82,7 +82,7 @@ func takeZeroState(states []*nfaState, numGroups int, idx int) (rtv []*nfaState,
}
}
for _, state := range rtv {
if len(state.transitions[EPSILON]) > 0 {
if len(state.transitions[epsilon]) > 0 {
return rtv, true
}
}