Thanks to visit codestin.com Credit goes to github.com
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.
1 parent 0911ea5 commit d7a04a8Copy full SHA for d7a04a8
1 file changed
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