From fe53557291766e385443f7f618c627bf46550162 Mon Sep 17 00:00:00 2001 From: Tristan F Date: Mon, 31 Jul 2023 21:17:39 -0400 Subject: [PATCH] docs: fix small typo in `match_range` (#906) --- 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 5a10b420..58c9ecb1 100644 --- a/pest/src/parser_state.rs +++ b/pest/src/parser_state.rs @@ -701,7 +701,7 @@ impl<'i, R: RuleType> ParserState<'i, R> { /// `Box` if successful, or `Err` with the updated `Box` otherwise. /// /// # Caution - /// The provided `range` is intepreted as inclusive. + /// The provided `range` is interpreted as inclusive. /// /// # Examples ///