about summary refs log tree commit diff
path: root/src/libregex/compile.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libregex/compile.rs')
-rw-r--r--src/libregex/compile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libregex/compile.rs b/src/libregex/compile.rs
index 52167ead18a..c361a25bf52 100644
--- a/src/libregex/compile.rs
+++ b/src/libregex/compile.rs
@@ -66,7 +66,7 @@ pub enum Inst {
     Jump(InstIdx),
 
     // Jumps to the instruction at the first index given. If that leads to
-    // a failing state, then the instruction at the second index given is
+    // a panic state, then the instruction at the second index given is
     // tried.
     Split(InstIdx, InstIdx),
 }