Skip to content

Commit

Permalink
Add missing comma
Browse files Browse the repository at this point in the history
'Note however,' -> 'Note, however,'
  • Loading branch information
camelid committed Nov 5, 2020
1 parent bbdb1f0 commit 677b2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/primitive_docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
///
Expand Down

0 comments on commit 677b2ac

Please sign in to comment.