automaton: s/thought/though/g

This commit is contained in:
nick black 2023-01-20 05:12:34 -05:00
parent 90135203e8
commit eac79ee680
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -364,7 +364,7 @@ add_phi_and_eta(automaton* a, const char* prefix, size_t pfxlen,
// accept any digit and transition to a numeric node. |e| is the culmination of
// the prefix before the numeric. |follow| is the successor of the numeric.
// here's our approach:
// - find a link to a numeric from e. there can only be one node (thought it
// - find a link to a numeric from e. there can only be one node (though it
// might have many links), so we can use the first one we find.
// - if there is no such numeric node linked from e, create one.
// (FIXME if all ten digits are occupied, what would we do?)