File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -747,8 +747,8 @@ impl f32 {
747
747
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
748
748
/// Note that this follows the semantics specified in IEEE 754-2019.
749
749
///
750
- /// Also note that "propagation" of NaNs here doesn't mean that the bitpattern of a NaN operand
751
- /// is necessarily conserved; see [explanation of NaN as a special value](f32) for more info.
750
+ /// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
751
+ /// operand is conserved; see [explanation of NaN as a special value](f32) for more info.
752
752
#[ must_use = "this returns the result of the comparison, without modifying either input" ]
753
753
#[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
754
754
#[ inline]
@@ -782,8 +782,8 @@ impl f32 {
782
782
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
783
783
/// Note that this follows the semantics specified in IEEE 754-2019.
784
784
///
785
- /// Also note that "propagation" of NaNs here doesn't mean that the bitpattern of a NaN operand
786
- /// is necessarily conserved; see [explanation of NaN as a special value](f32) for more info.
785
+ /// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
786
+ /// operand is conserved; see [explanation of NaN as a special value](f32) for more info.
787
787
#[ must_use = "this returns the result of the comparison, without modifying either input" ]
788
788
#[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
789
789
#[ inline]
Original file line number Diff line number Diff line change @@ -763,8 +763,8 @@ impl f64 {
763
763
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
764
764
/// Note that this follows the semantics specified in IEEE 754-2019.
765
765
///
766
- /// Also note that "propagation" of NaNs here doesn't mean that the bitpattern of a NaN operand
767
- /// is necessarily conserved; see [explanation of NaN as a special value](f32) for more info.
766
+ /// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
767
+ /// operand is conserved; see [explanation of NaN as a special value](f32) for more info.
768
768
#[ must_use = "this returns the result of the comparison, without modifying either input" ]
769
769
#[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
770
770
#[ inline]
@@ -798,8 +798,8 @@ impl f64 {
798
798
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
799
799
/// Note that this follows the semantics specified in IEEE 754-2019.
800
800
///
801
- /// Also note that "propagation" of NaNs here doesn't mean that the bitpattern of a NaN operand
802
- /// is necessarily conserved; see [explanation of NaN as a special value](f32) for more info.
801
+ /// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
802
+ /// operand is conserved; see [explanation of NaN as a special value](f32) for more info.
803
803
#[ must_use = "this returns the result of the comparison, without modifying either input" ]
804
804
#[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
805
805
#[ inline]
Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ impl f32 {
302
302
/// Raises a number to an integer power.
303
303
///
304
304
/// Using this function is generally faster than using `powf`.
305
- /// It might have different sequence of rounding operations than `powf`,
305
+ /// It might have a different sequence of rounding operations than `powf`,
306
306
/// so the results are not guaranteed to agree.
307
307
///
308
308
/// # Examples
Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ impl f64 {
302
302
/// Raises a number to an integer power.
303
303
///
304
304
/// Using this function is generally faster than using `powf`.
305
- /// It might have different sequence of rounding operations than `powf`,
305
+ /// It might have a different sequence of rounding operations than `powf`,
306
306
/// so the results are not guaranteed to agree.
307
307
///
308
308
/// # Examples
You can’t perform that action at this time.
0 commit comments