aboutsummaryrefslogtreecommitdiff
path: root/compiler/dfa/dfa.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--compiler/dfa/dfa.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dfa/dfa.go b/compiler/dfa/dfa.go
index c56af90..777bd24 100644
--- a/compiler/dfa/dfa.go
+++ b/compiler/dfa/dfa.go
@@ -47,7 +47,7 @@ type DFA struct {
TransitionTable map[string][256]string
}
-func GenDFA(root byteTree, symTab *symbolTable) *DFA {
+func GenDFA(root byteTree, symTab *symbolTable) *DFA {
initialState := root.first()
initialStateHash := initialState.hash()
stateMap := map[string]*symbolPositionSet{