about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Decking <Tobias.Decking@gmail.com>2023-03-04 00:31:17 +0100
committerTobias Decking <Tobias.Decking@gmail.com>2023-03-04 00:31:17 +0100
commitdb2c6e0385352743c94eb48416b5e486380eaac3 (patch)
tree0f188df0df0f4851bebb8fdc78f1a7d8f17e300b
parentdd45f01411122cb9a5c2c179776c882c006329e3 (diff)
downloadrust-db2c6e0385352743c94eb48416b5e486380eaac3.tar.gz
rust-db2c6e0385352743c94eb48416b5e486380eaac3.zip
Update comment.
-rw-r--r--library/core/src/num/dec2flt/mod.rs2
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 e0c73ef0eee..58ffb950ad8 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
-            // possible instances. Adding #[inline(never)] avoids this.
+            // possible instances can ever exist. Adding #[inline(never)] avoids this.
             #[inline(never)]
             fn from_str(src: &str) -> Result<Self, ParseFloatError> {
                 dec2flt(src)