File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ pub const MANTISSA_DIGITS: u32 = 24;
31
31
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
32
32
pub const DIGITS : u32 = 6 ;
33
33
34
- /// A very small number.
34
+ /// Difference between `1.0` and the next largest representable number.
35
35
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
36
36
pub const EPSILON : f32 = 1.19209290e-07_f32 ;
37
37
@@ -45,7 +45,7 @@ pub const MIN_POSITIVE: f32 = 1.17549435e-38_f32;
45
45
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
46
46
pub const MAX : f32 = 3.40282347e+38_f32 ;
47
47
48
- /// Minimum possible normal power of 2 exponent.
48
+ /// One greater than the minimum possible normal power of 2 exponent.
49
49
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
50
50
pub const MIN_EXP : i32 = -125 ;
51
51
/// Maximum possible power of 2 exponent.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ pub const MANTISSA_DIGITS: u32 = 53;
31
31
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
32
32
pub const DIGITS : u32 = 15 ;
33
33
34
- /// A very small number.
34
+ /// Difference between `1.0` and the next largest representable number.
35
35
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
36
36
pub const EPSILON : f64 = 2.2204460492503131e-16_f64 ;
37
37
@@ -45,7 +45,7 @@ pub const MIN_POSITIVE: f64 = 2.2250738585072014e-308_f64;
45
45
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
46
46
pub const MAX : f64 = 1.7976931348623157e+308_f64 ;
47
47
48
- /// Minimum possible normal power of 2 exponent.
48
+ /// One greater than the minimum possible normal power of 2 exponent.
49
49
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
50
50
pub const MIN_EXP : i32 = -1021 ;
51
51
/// Maximum possible power of 2 exponent.
You can’t perform that action at this time.
0 commit comments