From 23f6082fd2d7f19c7b35d9f4955eb2b488376016 Mon Sep 17 00:00:00 2001 From: Tomas Tauber <2410580+tomtau@users.noreply.github.com> Date: Tue, 30 Apr 2024 17:15:18 +0800 Subject: [PATCH] Update pest/src/parser_state.rs Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- pest/src/parser_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pest/src/parser_state.rs b/pest/src/parser_state.rs index 78a0a870..276e81f5 100644 --- a/pest/src/parser_state.rs +++ b/pest/src/parser_state.rs @@ -107,7 +107,7 @@ static ERROR_DETAIL: AtomicBool = AtomicBool::new(false); /// Sets whether information for more error details /// should be collected. This is useful for debugging -/// parser errors (as it leads to more comphrensive +/// parser errors (as it leads to more comprehensive /// error messages), but it has a higher performance cost. /// (hence, it's off by default) ///