From 9ea89e1d3d10622c7a4035f82f1ad5389e69b45d Mon Sep 17 00:00:00 2001 From: wcampbell Date: Tue, 12 Apr 2022 13:29:56 -0400 Subject: [PATCH] Fix spelling in docs for can_not_overflow --- library/core/src/num/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/num/mod.rs b/library/core/src/num/mod.rs index f45b73b0533..8b93cd39d5d 100644 --- a/library/core/src/num/mod.rs +++ b/library/core/src/num/mod.rs @@ -999,7 +999,7 @@ macro_rules! impl_helper_for { } impl_helper_for! { i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize } -/// Determins if a string of text of that length of that radix could be guaranteed to be +/// Determines if a string of text of that length of that radix could be guaranteed to be /// stored in the given type T. /// Note that if the radix is known to the compiler, it is just the check of digits.len that /// is done at runtime.