diff options
| -rw-r--r-- | library/core/src/num/dec2flt/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/dec2flt/mod.rs b/library/core/src/num/dec2flt/mod.rs index e9fe6571686..e0c73ef0eee 100644 --- a/library/core/src/num/dec2flt/mod.rs +++ b/library/core/src/num/dec2flt/mod.rs @@ -152,7 +152,7 @@ macro_rules! from_str_float_impl { // Since `dec2flt` is generic, a normal inline attribute on this function // with `dec2flt` having no attributes results in heavily repeated // generation of `dec2flt`, despite the fact only a maximum of 2 - // posiible instances. Adding #[inline(never)] avoids this. + // possible instances. Adding #[inline(never)] avoids this. #[inline(never)] fn from_str(src: &str) -> Result<Self, ParseFloatError> { dec2flt(src) |
