Skip to content

Commit 86641d9

Browse files
authored
core::convert::identity: fix issue number to #53500
1 parent b7772e6 commit 86641d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/libcore/convert.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
/// let filtered = iter.filter_map(identity).collect::<Vec<_>>();
104104
/// assert_eq!(vec![1, 3], filtered);
105105
/// ```
106-
#[unstable(feature = "convert_id", issue = "0")]
106+
#[unstable(feature = "convert_id", issue = "53500")]
107107
#[rustc_const_unstable(feature = "const_convert_id")]
108108
#[inline]
109109
pub const fn identity<T>(x: T) -> T { x }

0 commit comments

Comments
 (0)