Skip to content

Commit ac2709c

Browse files
committed
fill-in tracking issue
1 parent 114c2c9 commit ac2709c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

library/alloc/src/option.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ impl<T: ?Sized> Option<&T> {
532532
/// ```
533533
#[rustc_allow_incoherent_impl]
534534
#[must_use = "`self` will be dropped if the result is not used"]
535-
#[unstable(feature = "option_owned", issue = "none")]
535+
#[unstable(feature = "option_owned", issue = "102696")]
536536
pub fn owned(self) -> Option<T::Owned>
537537
where
538538
T: ToOwned,
@@ -567,7 +567,7 @@ impl<T: ?Sized> Option<&mut T> {
567567
/// ```
568568
#[rustc_allow_incoherent_impl]
569569
#[must_use = "`self` will be dropped if the result is not used"]
570-
#[unstable(feature = "option_owned", issue = "none")]
570+
#[unstable(feature = "option_owned", issue = "102696")]
571571
pub fn owned(self) -> Option<T::Owned>
572572
where
573573
T: ToOwned,

library/alloc/src/result.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ impl<T: ?Sized, E> Result<&T, E> {
516516
/// assert_eq!(owned, Ok(String::from("string")));
517517
/// ```
518518
#[rustc_allow_incoherent_impl]
519-
#[unstable(feature = "result_owned", issue = "none")]
519+
#[unstable(feature = "result_owned", issue = "102696")]
520520
pub fn owned(self) -> Result<T::Owned, E>
521521
where
522522
T: ToOwned,
@@ -550,7 +550,7 @@ impl<T: ?Sized, E> Result<&mut T, E> {
550550
/// assert_eq!(owned, Ok(String::from("string")));
551551
/// ```
552552
#[rustc_allow_incoherent_impl]
553-
#[unstable(feature = "result_owned", issue = "none")]
553+
#[unstable(feature = "result_owned", issue = "102696")]
554554
pub fn owned(self) -> Result<T::Owned, E>
555555
where
556556
T: ToOwned,

0 commit comments

Comments
 (0)