From 63a8c860fdb112c325f8a70a523f0fa7b42f4bf7 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 19 Nov 2024 23:49:56 -0800 Subject: [PATCH] Fix typo in MAX_STR_LEN documentation --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 88d92ac..1c5988e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -110,7 +110,7 @@ impl Buffer { /// /// This trait is sealed and cannot be implemented for types outside of itoa. pub trait Integer: private::Sealed { - /// The maximum length of the formated str for this integer. + /// The maximum length of the formatted str for this integer. const MAX_STR_LEN: usize; }