]> git.lizzy.rs Git - rust.git/commitdiff
Update slice_rotate to a real tracking number
authorScott McMurray <scottmcm@users.noreply.github.com>
Wed, 10 May 2017 17:23:19 +0000 (10:23 -0700)
committerScott McMurray <scottmcm@users.noreply.github.com>
Sun, 21 May 2017 08:55:43 +0000 (01:55 -0700)
src/doc/unstable-book/src/library-features/slice-rotate.md
src/libcollections/slice.rs
src/libcore/slice/mod.rs

index 40063412c2961852a8c72549fe9f461a9dfe7aeb..77fd598f1ea922537eed146ec4286a267a1ef1d7 100644 (file)
@@ -1,7 +1,7 @@
 # `slice_rotate`
 
-The tracking issue for this feature is: [#123456789]
+The tracking issue for this feature is: [#41891]
 
-[#123456789]: https://github.com/rust-lang/rust/issues/123456789
+[#41891]: https://github.com/rust-lang/rust/issues/41891
 
 ------------------------
index c0b9f01dc4c66f8dc5b564b43d5b39ad8eb32f64..dd3259f0cb4d7d44c758d4d5ff77a91212aa33ec 100644 (file)
@@ -1387,7 +1387,7 @@ pub fn sort_unstable_by_key<B, F>(&mut self, f: F)
     /// slide(&mut v, 6..8, 1);
     /// assert_eq!(&v, &[0, 3, 7, 4, 5, 6, 1, 2, 8, 9]);
     /// ```
-    #[unstable(feature = "slice_rotate", issue = "123456789")]
+    #[unstable(feature = "slice_rotate", issue = "41891")]
     pub fn rotate(&mut self, mid: usize) -> usize {
         core_slice::SliceExt::rotate(self, mid)
     }
index 744dd791a7e77446a406cd141d6f38b0fdeda233..8cdfcf23254e77b027dd448d803a5644ce17ca92 100644 (file)
@@ -203,7 +203,7 @@ unsafe fn get_unchecked_mut<I>(&mut self, index: I) -> &mut I::Output
     #[stable(feature = "core", since = "1.6.0")]
     fn ends_with(&self, needle: &[Self::Item]) -> bool where Self::Item: PartialEq;
 
-    #[unstable(feature = "slice_rotate", issue = "123456789")]
+    #[unstable(feature = "slice_rotate", issue = "41891")]
     fn rotate(&mut self, mid: usize) -> usize;
 
     #[stable(feature = "clone_from_slice", since = "1.7.0")]