@@ -834,7 +834,7 @@ impl<T: Copy, E> Result<&T, E> {
834834 /// let copied = x.copied();
835835 /// assert_eq!(copied, Ok(12));
836836 /// ```
837- #[ unstable( feature = "result_copied" , reason = "newly added" , issue = "XXXXX " ) ]
837+ #[ unstable( feature = "result_copied" , reason = "newly added" , issue = "63168 " ) ]
838838 fn copied ( self ) -> Result < T , E > {
839839 self . map ( |& t| t)
840840 }
@@ -854,7 +854,7 @@ impl<T: Copy, E> Result<&mut T, E> {
854854 /// let copied = x.copied();
855855 /// assert_eq!(copied, Ok(12));
856856 /// ```
857- #[ unstable( feature = "result_copied" , reason = "newly added" , issue = "XXXXX " ) ]
857+ #[ unstable( feature = "result_copied" , reason = "newly added" , issue = "63168 " ) ]
858858 fn copied ( self ) -> Result < T , E > {
859859 self . map ( |& mut t| t)
860860 }
@@ -874,7 +874,7 @@ impl<T, E: Copy> Result<T, &E> {
874874 /// let copied = x.copied_err();
875875 /// assert_eq!(copied, Err(12));
876876 /// ```
877- #[ unstable( feature = "result_copied" , reason = "newly added" , issue = "XXXXX " ) ]
877+ #[ unstable( feature = "result_copied" , reason = "newly added" , issue = "63168 " ) ]
878878 fn copied_err ( self ) -> Result < T , E > {
879879 self . map_err ( |& e| e)
880880 }
@@ -894,7 +894,7 @@ impl<T, E: Copy> Result<T, &mut E> {
894894 /// let copied = x.copied();
895895 /// assert_eq!(cloned, Err(12));
896896 /// ```
897- #[ unstable( feature = "result_copied" , reason = "newly added" , issue = "XXXXX " ) ]
897+ #[ unstable( feature = "result_copied" , reason = "newly added" , issue = "63168 " ) ]
898898 fn copied_err ( self ) -> Result < T , E > {
899899 self . map_err ( |& mut e| e)
900900 }
@@ -914,7 +914,7 @@ impl<T: Clone, E> Result<&T, E> {
914914 /// let cloned = x.cloned();
915915 /// assert_eq!(cloned, Ok(12));
916916 /// ```
917- #[ unstable( feature = "result_cloned" , reason = "newly added" , issue = "XXXXX " ) ]
917+ #[ unstable( feature = "result_cloned" , reason = "newly added" , issue = "63168 " ) ]
918918 fn cloned ( self ) -> Result < T , E > {
919919 self . map ( |t| t. clone ( ) )
920920 }
@@ -934,13 +934,13 @@ impl<T: Clone, E> Result<&mut T, E> {
934934 /// let cloned = x.cloned();
935935 /// assert_eq!(cloned, Ok(12));
936936 /// ```
937- #[ unstable( feature = "result_cloned" , reason = "newly added" , issue = "XXXXX " ) ]
937+ #[ unstable( feature = "result_cloned" , reason = "newly added" , issue = "63168 " ) ]
938938 fn cloned ( self ) -> Result < T , E > {
939939 self . map ( |t| t. clone ( ) )
940940 }
941941}
942942
943- impl < T , E : Clone > Result < T , & mut E > {
943+ impl < T , E : Clone > Result < T , & E > {
944944 /// Maps a `Result<T, &E>` to a `Result<T, E>` by cloning the contents of the
945945 /// `Err` part.
946946 ///
@@ -954,7 +954,7 @@ impl<T, E: Clone> Result<T, &mut E> {
954954 /// let cloned = x.cloned();
955955 /// assert_eq!(cloned, Err(12));
956956 /// ```
957- #[ unstable( feature = "result_cloned" , reason = "newly added" , issue = "XXXXX " ) ]
957+ #[ unstable( feature = "result_cloned" , reason = "newly added" , issue = "63168 " ) ]
958958 fn cloned_err ( self ) -> Result < T , E > {
959959 self . map_err ( |e| e. clone ( ) )
960960 }
@@ -974,7 +974,7 @@ impl<T, E: Clone> Result<T, &mut E> {
974974 /// let cloned = x.cloned();
975975 /// assert_eq!(cloned, Err(12));
976976 /// ```
977- #[ unstable( feature = "result_cloned" , reason = "newly added" , issue = "XXXXX " ) ]
977+ #[ unstable( feature = "result_cloned" , reason = "newly added" , issue = "63168 " ) ]
978978 fn cloned_err ( self ) -> Result < T , E > {
979979 self . map_err ( |e| e. clone ( ) )
980980 }
0 commit comments