From f7c28ab44d0817f55679c5af4a01c8ad3e5aad1f Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Tue, 25 Feb 2025 12:03:03 +0200 Subject: [PATCH] Update input_string.rs --- internals/src/error/input_string.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internals/src/error/input_string.rs b/internals/src/error/input_string.rs index 817d20e43..b544c7345 100644 --- a/internals/src/error/input_string.rs +++ b/internals/src/error/input_string.rs @@ -95,7 +95,7 @@ impl_from!(&str); /// /// This is created by `display_cannot_parse` method and should be used as /// `write_err!("{}", self.input.display_cannot_parse("what is parsed"); self.source)` in parse -/// error [`Display`](fmt::Display) imlementation if the error has source. If the error doesn't +/// error [`Display`](fmt::Display) implementation if the error has source. If the error doesn't /// have a source just use regular `write!` with same formatting arguments. pub struct CannotParse<'a, T: fmt::Display + ?Sized> { input: &'a InputString,