File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ impl f128 {
200
200
/// ≥ 0.5 × 2<sup><i>x</i></sup>.
201
201
#[ unstable( feature = "f128" , issue = "116909" ) ]
202
202
pub const MIN_EXP : i32 = -16_381 ;
203
- /// Maximum possible power of 2 exponent.
203
+ /// One greater than the maximum possible power of 2 exponent.
204
204
///
205
205
/// If <i>x</i> = `MAX_EXP`, then normal numbers
206
206
/// < 1 × 2<sup><i>x</i></sup>.
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ impl f16 {
195
195
/// ≥ 0.5 × 2<sup><i>x</i></sup>.
196
196
#[ unstable( feature = "f16" , issue = "116909" ) ]
197
197
pub const MIN_EXP : i32 = -13 ;
198
- /// Maximum possible power of 2 exponent.
198
+ /// One greater than the maximum possible power of 2 exponent.
199
199
///
200
200
/// If <i>x</i> = `MAX_EXP`, then normal numbers
201
201
/// < 1 × 2<sup><i>x</i></sup>.
Original file line number Diff line number Diff line change @@ -446,7 +446,7 @@ impl f32 {
446
446
/// ≥ 0.5 × 2<sup><i>x</i></sup>.
447
447
#[ stable( feature = "assoc_int_consts" , since = "1.43.0" ) ]
448
448
pub const MIN_EXP : i32 = -125 ;
449
- /// Maximum possible power of 2 exponent.
449
+ /// One greater than the maximum possible power of 2 exponent.
450
450
///
451
451
/// If <i>x</i> = `MAX_EXP`, then normal numbers
452
452
/// < 1 × 2<sup><i>x</i></sup>.
Original file line number Diff line number Diff line change @@ -445,7 +445,7 @@ impl f64 {
445
445
/// ≥ 0.5 × 2<sup><i>x</i></sup>.
446
446
#[ stable( feature = "assoc_int_consts" , since = "1.43.0" ) ]
447
447
pub const MIN_EXP : i32 = -1021 ;
448
- /// Maximum possible power of 2 exponent.
448
+ /// One greater than the maximum possible power of 2 exponent.
449
449
///
450
450
/// If <i>x</i> = `MAX_EXP`, then normal numbers
451
451
/// < 1 × 2<sup><i>x</i></sup>.
You can’t perform that action at this time.
0 commit comments