We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d4a110d + d7a04a8 commit d9fd5e6Copy full SHA for d9fd5e6
Parser/pgen/automata.py
@@ -236,7 +236,7 @@ def add_closure(nfa_state, base_nfa_set):
236
if nfa_arc.label is None:
237
add_closure(nfa_arc.target, base_nfa_set)
238
239
- # Calculte the epsilon-closure of the starting state
+ # Calculate the epsilon-closure of the starting state
240
base_nfa_set = set()
241
add_closure(nfa.start, base_nfa_set)
242
0 commit comments