@@ -695,8 +695,8 @@ impl f128 {
695695 /// Returns the maximum of the two numbers, ignoring NaN.
696696 ///
697697 /// If one of the arguments is NaN, then the other argument is returned.
698- /// This follows the IEEE 754-2008 semantics for maxNum, except for handling of signaling NaNs;
699- /// this function handles all NaNs the same way and avoids maxNum's problems with associativity.
698+ /// This follows the IEEE 754-2008 semantics for ` maxNum` , except for handling of signaling NaNs;
699+ /// this function handles all NaNs the same way and avoids ` maxNum` 's problems with associativity.
700700 /// This also matches the behavior of libm’s fmax. In particular, if the inputs compare equal
701701 /// (such as for the case of `+0.0` and `-0.0`), either input may be returned non-deterministically.
702702 ///
@@ -723,8 +723,8 @@ impl f128 {
723723 /// Returns the minimum of the two numbers, ignoring NaN.
724724 ///
725725 /// If one of the arguments is NaN, then the other argument is returned.
726- /// This follows the IEEE 754-2008 semantics for minNum, except for handling of signaling NaNs;
727- /// this function handles all NaNs the same way and avoids minNum's problems with associativity.
726+ /// This follows the IEEE 754-2008 semantics for ` minNum` , except for handling of signaling NaNs;
727+ /// this function handles all NaNs the same way and avoids ` minNum` 's problems with associativity.
728728 /// This also matches the behavior of libm’s fmin. In particular, if the inputs compare equal
729729 /// (such as for the case of `+0.0` and `-0.0`), either input may be returned non-deterministically.
730730 ///
@@ -769,7 +769,7 @@ impl f128 {
769769 ///
770770 /// If one of the arguments is NaN, then NaN is returned. Otherwise this returns the greater
771771 /// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
772- /// Note that this follows the semantics specified in IEEE 754-2019.
772+ /// Note that this follows the IEEE 754-2019 semantics for `maximum` .
773773 ///
774774 /// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
775775 /// operand is conserved; see the [specification of NaN bit patterns](f32#nan-bit-patterns) for more info.
@@ -802,7 +802,7 @@ impl f128 {
802802 ///
803803 /// If one of the arguments is NaN, then NaN is returned. Otherwise this returns the lesser
804804 /// of the two numbers. For this operation, -0.0 is considered to be less than +0.0.
805- /// Note that this follows the semantics specified in IEEE 754-2019.
805+ /// Note that this follows the IEEE 754-2019 semantics for `minimum` .
806806 ///
807807 /// Also note that "propagation" of NaNs here doesn't necessarily mean that the bitpattern of a NaN
808808 /// operand is conserved; see the [specification of NaN bit patterns](f32#nan-bit-patterns) for more info.
0 commit comments