Skip to content

Commit 85a468b

Browse files
committed
Clarify {f32,f64}::EPSILON docs
1 parent 2539b5f commit 85a468b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libcore/num/f32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub const DIGITS: u32 = 6;
2626

2727
/// [Machine epsilon] value for `f32`.
2828
///
29-
/// This is the difference between `1.0` and the next largest representable number.
29+
/// This is the difference between `1.0` and the next larger representable number.
3030
///
3131
/// [Machine epsilon]: https://en.wikipedia.org/wiki/Machine_epsilon
3232
#[stable(feature = "rust1", since = "1.0.0")]

src/libcore/num/f64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub const DIGITS: u32 = 15;
2626

2727
/// [Machine epsilon] value for `f64`.
2828
///
29-
/// This is the difference between `1.0` and the next largest representable number.
29+
/// This is the difference between `1.0` and the next larger representable number.
3030
///
3131
/// [Machine epsilon]: https://en.wikipedia.org/wiki/Machine_epsilon
3232
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)