about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2018-08-20 09:16:56 +0200
committerGitHub <noreply@github.com>2018-08-20 09:16:56 +0200
commit86641d97b23674a7b0df8523a8684e8b02bf0b33 (patch)
tree575509bd2e2f3de69e4d99508be317343943f7ef /src/libcore
parentb7772e6c9e27cb4bbdcb735789b937dc63ca189b (diff)
downloadrust-86641d97b23674a7b0df8523a8684e8b02bf0b33.tar.gz
rust-86641d97b23674a7b0df8523a8684e8b02bf0b33.zip
core::convert::identity: fix issue number to #53500
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/convert.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/convert.rs b/src/libcore/convert.rs
index bfa1bd99bfe..d5337868843 100644
--- a/src/libcore/convert.rs
+++ b/src/libcore/convert.rs
@@ -103,7 +103,7 @@
 /// let filtered = iter.filter_map(identity).collect::<Vec<_>>();
 /// assert_eq!(vec![1, 3], filtered);
 /// ```
-#[unstable(feature = "convert_id", issue = "0")]
+#[unstable(feature = "convert_id", issue = "53500")]
 #[rustc_const_unstable(feature = "const_convert_id")]
 #[inline]
 pub const fn identity<T>(x: T) -> T { x }