@@ -674,7 +674,7 @@ impl f32 {
674
674
/// Returns the maximum of the two numbers.
675
675
///
676
676
/// Follows the IEEE-754 2008 semantics for maxNum, except for handling of signaling NaNs.
677
- /// This match’s the behavior of libm’s fmin.
677
+ /// This matches the behavior of libm’s fmin.
678
678
///
679
679
/// ```
680
680
/// let x = 1.0f32;
@@ -693,7 +693,7 @@ impl f32 {
693
693
/// Returns the minimum of the two numbers.
694
694
///
695
695
/// Follows the IEEE-754 2008 semantics for minNum, except for handling of signaling NaNs.
696
- /// This match’s the behavior of libm’s fmin.
696
+ /// This matches the behavior of libm’s fmin.
697
697
///
698
698
/// ```
699
699
/// let x = 1.0f32;
@@ -725,7 +725,7 @@ impl f32 {
725
725
///
726
726
/// If one of the arguments is NaN, then NaN is returned. Otherwise this returns the greater
727
727
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
728
- /// Note that this follow the semantics specified in IEEE 754-2019.
728
+ /// Note that this follows the semantics specified in IEEE 754-2019.
729
729
#[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
730
730
#[ inline]
731
731
pub fn maximum ( self , other : f32 ) -> f32 {
@@ -756,7 +756,7 @@ impl f32 {
756
756
///
757
757
/// If one of the arguments is NaN, then NaN is returned. Otherwise this returns the lesser
758
758
/// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
759
- /// Note that this follow the semantics specified in IEEE 754-2019.
759
+ /// Note that this follows the semantics specified in IEEE 754-2019.
760
760
#[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
761
761
#[ inline]
762
762
pub fn minimum ( self , other : f32 ) -> f32 {
0 commit comments