@@ -674,7 +674,7 @@ impl f32 {
674674 /// Returns the maximum of the two numbers.
675675 ///
676676 /// 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.
678678 ///
679679 /// ```
680680 /// let x = 1.0f32;
@@ -693,7 +693,7 @@ impl f32 {
693693 /// Returns the minimum of the two numbers.
694694 ///
695695 /// 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.
697697 ///
698698 /// ```
699699 /// let x = 1.0f32;
@@ -725,7 +725,7 @@ impl f32 {
725725 ///
726726 /// If one of the arguments is NaN, then NaN is returned. Otherwise this returns the greater
727727 /// 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.
729729 #[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
730730 #[ inline]
731731 pub fn maximum ( self , other : f32 ) -> f32 {
@@ -756,7 +756,7 @@ impl f32 {
756756 ///
757757 /// If one of the arguments is NaN, then NaN is returned. Otherwise this returns the lesser
758758 /// 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.
760760 #[ unstable( feature = "float_minimum_maximum" , issue = "91079" ) ]
761761 #[ inline]
762762 pub fn minimum ( self , other : f32 ) -> f32 {
0 commit comments