about summary refs log tree commit diff
path: root/library/std/src/primitive_docs.rs
diff options
context:
space:
mode:
authorCamelid <camelidcamel@gmail.com>2020-11-04 18:52:02 -0800
committerCamelid <camelidcamel@gmail.com>2020-11-04 18:57:54 -0800
commit677b2acb482835e151c519da0b8517174b399e35 (patch)
treef64f0ea449428527b6b627424b0ba22d034b3420 /library/std/src/primitive_docs.rs
parentbbdb1f0f66c71e0f0add60dd168f67e388519e03 (diff)
downloadrust-677b2acb482835e151c519da0b8517174b399e35.tar.gz
rust-677b2acb482835e151c519da0b8517174b399e35.zip
Add missing comma
'Note however,' -> 'Note, however,'
Diffstat (limited to 'library/std/src/primitive_docs.rs')
-rw-r--r--library/std/src/primitive_docs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/primitive_docs.rs b/library/std/src/primitive_docs.rs
index 9353642767a..c7d104a401f 100644
--- a/library/std/src/primitive_docs.rs
+++ b/library/std/src/primitive_docs.rs
@@ -800,7 +800,7 @@ mod prim_tuple {}
 /// calculation with floats round to a nearby representable number. For example,
 /// `5.0` and `1.0` can be exactly represented as `f32`, but `1.0 / 5.0` results
 /// in `0.20000000298023223876953125` since `0.2` cannot be exactly represented
-/// as `f32`. Note however, that printing floats with `println` and friends will
+/// as `f32`. Note, however, that printing floats with `println` and friends will
 /// often discard insignificant digits: `println!("{}", 1.0f32 / 5.0f32)` will
 /// print `0.2`.
 ///