Improve README readability

This commit is contained in:
Joscha 2019-10-31 19:37:39 +00:00
parent d164af275e
commit 1ae25d53bc

View file

@ -5,11 +5,11 @@ convert between NFAs and DFAs, and minimize DFAs.
The representation of DFAs and NFAs assumes an infinite alphabet: The representation of DFAs and NFAs assumes an infinite alphabet:
DFA states always contain a default transition (marked with `*` in the * DFA states always contain a default transition (marked with `*` in
visualisations), which is taken if the current token doesn't appear in the visualisations), which is taken if the current token doesn't
any of the other transitions. appear in any of the other transitions.
NFA transitions either apply to a set of tokens, or to all tokens * NFA transitions either apply to a set of tokens, or to all tokens
*except* a specified set. In the visualisation, the character `Σ` *except* a specified set. In the visualisation, the character `Σ`
denotes the alphabet of tokens. denotes the alphabet of tokens.