From 33ce1c251b6a1757042bba930fd6b1825070008b Mon Sep 17 00:00:00 2001 From: Hiroki Kobayashi <3303362+koba-e964@users.noreply.github.com> Date: Tue, 30 Jan 2024 02:54:48 +0900 Subject: [PATCH] Fix a typo in regex-automata/src/nfa/mod.rs --- regex-automata/src/nfa/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regex-automata/src/nfa/mod.rs b/regex-automata/src/nfa/mod.rs index 0c36f598a..44df273c6 100644 --- a/regex-automata/src/nfa/mod.rs +++ b/regex-automata/src/nfa/mod.rs @@ -46,7 +46,7 @@ the guarantee that given any state and a character in a haystack, there is at most one transition defined for it. (Although there may be many epsilon transitions.) -It possible that other types of NFAs will be added in the future, such as a +It's possible that other types of NFAs will be added in the future, such as a [Glushkov NFA](https://en.wikipedia.org/wiki/Glushkov%27s_construction_algorithm). But currently, this crate only provides a Thompson NFA. */