From 4fb91dfb81f18250517781110fa6237e4211d5a8 Mon Sep 17 00:00:00 2001 From: Eliot Robson Date: Sun, 22 Sep 2024 22:02:50 -0500 Subject: [PATCH] Update automata/fa/nfa.py --- automata/fa/nfa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automata/fa/nfa.py b/automata/fa/nfa.py index 7f0d86f5..8857e773 100644 --- a/automata/fa/nfa.py +++ b/automata/fa/nfa.py @@ -209,7 +209,7 @@ def from_regex( The regex to construct an equivalent NFA for. input_symbols : Optional[AbstractSet[str]], default: None The set of input symbols to create the NFA over. If not - set, defaults to all letters found in the regex. + set, defaults to all non-reserved characters found in the regex. Returns ------