From ce3cdb8917666146a76d7c731eda18e4c65877a9 Mon Sep 17 00:00:00 2001 From: Hiroki Kobayashi <3303362+koba-e964@users.noreply.github.com> Date: Thu, 8 Oct 2020 14:36:03 +0900 Subject: [PATCH] Update pikevm.rs --- src/pikevm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pikevm.rs b/src/pikevm.rs index c106c76f31..299087da82 100644 --- a/src/pikevm.rs +++ b/src/pikevm.rs @@ -8,7 +8,7 @@ // // It can do more than the DFA can (specifically, record capture locations // and execute Unicode word boundary assertions), but at a slower speed. -// Specifically, the Pike VM exectues a DFA implicitly by repeatedly expanding +// Specifically, the Pike VM executes a DFA implicitly by repeatedly expanding // epsilon transitions. That is, the Pike VM engine can be in multiple states // at once where as the DFA is only ever in one state at a time. //