diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2018-08-20 09:16:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-20 09:16:56 +0200 |
| commit | 86641d97b23674a7b0df8523a8684e8b02bf0b33 (patch) | |
| tree | 575509bd2e2f3de69e4d99508be317343943f7ef /src/libcore | |
| parent | b7772e6c9e27cb4bbdcb735789b937dc63ca189b (diff) | |
| download | rust-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.rs | 2 |
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 } |
