Skip to content

Commit 677b2ac

Browse files
committed
Add missing comma
'Note however,' -> 'Note, however,'
1 parent bbdb1f0 commit 677b2ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/primitive_docs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ mod prim_tuple {}
800800
/// calculation with floats round to a nearby representable number. For example,
801801
/// `5.0` and `1.0` can be exactly represented as `f32`, but `1.0 / 5.0` results
802802
/// in `0.20000000298023223876953125` since `0.2` cannot be exactly represented
803-
/// as `f32`. Note however, that printing floats with `println` and friends will
803+
/// as `f32`. Note, however, that printing floats with `println` and friends will
804804
/// often discard insignificant digits: `println!("{}", 1.0f32 / 5.0f32)` will
805805
/// print `0.2`.
806806
///

0 commit comments

Comments
 (0)