Skip to content

Commit 61f20f8

Browse files
authored
Fix f32 examples.
1 parent f74c5d2 commit 61f20f8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/libstd/f32.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1081,15 +1081,17 @@ impl f32 {
10811081
}
10821082

10831083
/// Returns max if self is greater than max, and min if self is less than min.
1084-
/// Otherwise this returns self. Panics if min > max, min equals NaN, or max equals NaN.
1084+
/// Otherwise this returns self. Panics if min > max, min is NaN, or max is NaN.
10851085
///
10861086
/// # Examples
10871087
///
10881088
/// ```
1089+
/// #![feature(clamp)]
1090+
/// use std::f32::NAN;
10891091
/// assert!((-3.0f32).clamp(-2.0f32, 1.0f32) == -2.0f32);
10901092
/// assert!((0.0f32).clamp(-2.0f32, 1.0f32) == 0.0f32);
10911093
/// assert!((2.0f32).clamp(-2.0f32, 1.0f32) == 1.0f32);
1092-
/// assert!((NAN).clamp(-2.0f32, 1.0f32) == NAN);
1094+
/// assert!((NAN).clamp(-2.0f32, 1.0f32).is_nan());
10931095
/// ```
10941096
#[unstable(feature = "clamp", issue = "44095")]
10951097
#[inline]

0 commit comments

Comments
 (0)