Skip to content

Commit cc6fe75

Browse files
committed
untrack
1 parent 1f17c24 commit cc6fe75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/array/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ pub fn repeat<T: Clone, const N: usize>(val: T) -> [T; N] {
104104
/// ```
105105
#[inline]
106106
#[stable(feature = "array_from_fn", since = "1.63.0")]
107-
#[rustc_const_unstable(feature = "const_array", issue = "147606")]
107+
#[rustc_const_unstable(feature = "const_array", issue = "none")]
108108
pub const fn from_fn<T: [const] Destruct, const N: usize, F>(f: F) -> [T; N]
109109
where
110110
F: [const] FnMut(usize) -> T + [const] Destruct,
@@ -545,7 +545,7 @@ impl<T, const N: usize> [T; N] {
545545
/// ```
546546
#[must_use]
547547
#[stable(feature = "array_map", since = "1.55.0")]
548-
#[rustc_const_unstable(feature = "const_array", issue = "147606")]
548+
#[rustc_const_unstable(feature = "const_array", issue = "none")]
549549
pub const fn map<F, U>(self, f: F) -> [U; N]
550550
where
551551
F: [const] FnMut(T) -> U + [const] Destruct,

0 commit comments

Comments
 (0)