Skip to content
Snippets Groups Projects
Commit 6756c8ad authored by Tom Lane's avatar Tom Lane
Browse files

Fix old typo in comment.

NFAs have children, but their individual states don't.
parent 9a9473f3
No related branches found
No related tags found
No related merge requests found
...@@ -331,8 +331,8 @@ struct nfa ...@@ -331,8 +331,8 @@ struct nfa
color bos[2]; /* colors, if any, assigned to BOS and BOL */ color bos[2]; /* colors, if any, assigned to BOS and BOL */
color eos[2]; /* colors, if any, assigned to EOS and EOL */ color eos[2]; /* colors, if any, assigned to EOS and EOL */
size_t size; /* Current NFA size; differs from nstates as size_t size; /* Current NFA size; differs from nstates as
* it also counts the number of states created * it also counts the number of states in
* by children of this state. */ * children of this NFA. */
struct vars *v; /* simplifies compile error reporting */ struct vars *v; /* simplifies compile error reporting */
struct nfa *parent; /* parent NFA, if any */ struct nfa *parent; /* parent NFA, if any */
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment