]> git.lizzy.rs Git - rust.git/blobdiff - library/core/src/slice/mod.rs
Changed slice.swap documentation for better readability
[rust.git] / library / core / src / slice / mod.rs
index aaa00653b99c274cc6fda272fe74402d3143bfaa..92b1e1d75c660123021a44bda8d000fa48f6ee2f 100644 (file)
@@ -553,9 +553,9 @@ pub const fn as_mut_ptr_range(&mut self) -> Range<*mut T> {
     /// # Examples
     ///
     /// ```
-    /// let mut v = ["a", "b", "c", "d"];
-    /// v.swap(1, 3);
-    /// assert!(v == ["a", "d", "c", "b"]);
+    /// let mut v = ["a", "b", "c", "d", "e];
+    /// v.swap(2, 4);
+    /// assert!(v == ["a", "b", "e", "d", "c"]);
     /// ```
     #[stable(feature = "rust1", since = "1.0.0")]
     #[inline]