Skip to content

Commit

Permalink
mark as stable
Browse files Browse the repository at this point in the history
  • Loading branch information
tguichaoua committed Jul 8, 2023
1 parent bab8d29 commit 6bfad31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/alloc/src/vec/cow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ impl<'a, T: Clone> From<&'a [T]> for Cow<'a, [T]> {
}
}

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

0 comments on commit 6bfad31

Please sign in to comment.