Skip to content

Commit 9618299

Browse files
committed
Assign tracking issue to option_ref_mut_cloned
1 parent 5383205 commit 9618299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ impl<'a, T: Clone> Option<&'a mut T> {
788788
/// let cloned = opt_x.cloned();
789789
/// assert_eq!(cloned, Some(12));
790790
/// ```
791-
#[unstable(feature = "option_ref_mut_cloned", issue = "0")]
791+
#[unstable(feature = "option_ref_mut_cloned", issue = "43738")]
792792
pub fn cloned(self) -> Option<T> {
793793
self.map(|t| t.clone())
794794
}

0 commit comments

Comments
 (0)