Skip to content

Commit 6bfad31

Browse files
committed
mark as stable
1 parent bab8d29 commit 6bfad31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/vec/cow.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ impl<'a, T: Clone> From<&'a [T]> for Cow<'a, [T]> {
1515
}
1616
}
1717

18-
#[unstable(feature = "cow_from_array_ref", issue = "none")]
18+
#[stable(feature = "cow_from_array_ref", since = "CURRENT_RUSTC_VERSION")]
1919
impl<'a, T: Clone, const N: usize> From<&'a [T; N]> for Cow<'a, [T]> {
2020
/// Creates a [`Borrowed`] variant of [`Cow`]
2121
/// from a reference to an array.

0 commit comments

Comments
 (0)