diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 63b79d5256d..3e4eadbb7c9 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -49,7 +49,7 @@ /// assert_eq!(strings, ["Hello there!", "Hello there!"]); /// ``` #[inline] -#[unstable(feature = "array_repeat", issue = "none")] +#[unstable(feature = "array_repeat", issue = "126695")] pub fn repeat(val: T) -> [T; N] { from_trusted_iterator(repeat_n(val, N)) }