Skip to content

Commit d1b7681

Browse files
committed
Remove unstable feature
1 parent fc84777 commit d1b7681

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

library/core/src/num/nonzero.rs

-8
Original file line numberDiff line numberDiff line change
@@ -1147,8 +1147,6 @@ macro_rules! nonzero_min_max_unsigned {
11471147
/// # Examples
11481148
///
11491149
/// ```
1150-
/// #![feature(nonzero_min_max)]
1151-
///
11521150
#[doc = concat!("# use std::num::", stringify!($Ty), ";")]
11531151
#[doc = concat!("assert_eq!(", stringify!($Ty), "::MIN.get(), 1", stringify!($Int), ");")]
11541152
/// ```
@@ -1162,8 +1160,6 @@ macro_rules! nonzero_min_max_unsigned {
11621160
/// # Examples
11631161
///
11641162
/// ```
1165-
/// #![feature(nonzero_min_max)]
1166-
///
11671163
#[doc = concat!("# use std::num::", stringify!($Ty), ";")]
11681164
#[doc = concat!("assert_eq!(", stringify!($Ty), "::MAX.get(), ", stringify!($Int), "::MAX);")]
11691165
/// ```
@@ -1189,8 +1185,6 @@ macro_rules! nonzero_min_max_signed {
11891185
/// # Examples
11901186
///
11911187
/// ```
1192-
/// #![feature(nonzero_min_max)]
1193-
///
11941188
#[doc = concat!("# use std::num::", stringify!($Ty), ";")]
11951189
#[doc = concat!("assert_eq!(", stringify!($Ty), "::MIN.get(), ", stringify!($Int), "::MIN);")]
11961190
/// ```
@@ -1208,8 +1202,6 @@ macro_rules! nonzero_min_max_signed {
12081202
/// # Examples
12091203
///
12101204
/// ```
1211-
/// #![feature(nonzero_min_max)]
1212-
///
12131205
#[doc = concat!("# use std::num::", stringify!($Ty), ";")]
12141206
#[doc = concat!("assert_eq!(", stringify!($Ty), "::MAX.get(), ", stringify!($Int), "::MAX);")]
12151207
/// ```

0 commit comments

Comments
 (0)