From fa8d3002cd38df1322f2d112b025c23987a7080f Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 29 Nov 2023 14:17:48 +1100 Subject: [PATCH] internals: Fix docs typo --- 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 b69751c0..2328147a 100644 --- a/internals/src/error/input_string.rs +++ b/internals/src/error/input_string.rs @@ -17,7 +17,7 @@ pub struct InputString(Storage); impl InputString { /// Displays a message saying `failed to parse as `. /// - /// This is normally used whith the `write_err!` macro. + /// This is normally used with the `write_err!` macro. pub fn display_cannot_parse<'a, T>(&'a self, what: &'a T) -> CannotParse<'a, T> where T: fmt::Display + ?Sized,