]> git.lizzy.rs Git - rust.git/commitdiff
Fix f64 examples
authorJacob Kiesel <kieseljake@gmail.com>
Sat, 26 Aug 2017 23:54:51 +0000 (17:54 -0600)
committerGitHub <noreply@github.com>
Sat, 26 Aug 2017 23:54:51 +0000 (17:54 -0600)
src/libstd/f64.rs

index ab8f2cd2fdfbdbd31107c10d53b314dbf1a200da..0a7176f9cc75e133ec2298b1f768a1d4ed150c24 100644 (file)
@@ -971,15 +971,17 @@ pub fn atanh(self) -> f64 {
     }
 
     /// Returns max if self is greater than max, and min if self is less than min.
-    /// Otherwise this returns self.  Panics if min > max, min equals NaN, or max equals NaN.
+    /// Otherwise this returns self.  Panics if min > max, min is NaN, or max is NaN.
     ///
     /// # Examples
     ///
     /// ```
+    /// #![feature(clamp)]
+    /// use std::f64::NAN;
     /// assert!((-3.0f64).clamp(-2.0f64, 1.0f64) == -2.0f64);
     /// assert!((0.0f64).clamp(-2.0f64, 1.0f64) == 0.0f64);
     /// assert!((2.0f64).clamp(-2.0f64, 1.0f64) == 1.0f64);
-    /// assert!((NAN).clamp(-2.0f64, 1.0f64) == NAN);
+    /// assert!((NAN).clamp(-2.0f64, 1.0f64).is_nan());
     /// ```
     #[unstable(feature = "clamp", issue = "44095")]
     #[inline]