about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorBastian Kauschke <bastian_kauschke@hotmail.de>2020-03-31 16:50:06 +0200
committerBastian Kauschke <bastian_kauschke@hotmail.de>2020-03-31 16:50:06 +0200
commite1afd26c524dbc8b90e7f1cdb00891f0b63b244d (patch)
tree14be2e0c4d5ad2134bcda1a86aca1239ef463687 /src/liballoc
parentb5223d272599b93624c51bfa0c4232cf54823053 (diff)
downloadrust-e1afd26c524dbc8b90e7f1cdb00891f0b63b244d.tar.gz
rust-e1afd26c524dbc8b90e7f1cdb00891f0b63b244d.zip
fix docs
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/collections/vec_deque.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/collections/vec_deque.rs b/src/liballoc/collections/vec_deque.rs
index c95d3c6cbfe..78b3ad3b838 100644
--- a/src/liballoc/collections/vec_deque.rs
+++ b/src/liballoc/collections/vec_deque.rs
@@ -2055,7 +2055,7 @@ impl<T> VecDeque<T> {
     /// As it returns a mutable slice, this can be used to sort or binary search a deque.
     ///
     /// Once the internal storage is contiguous, the [`as_slices`](#method.as_slices) and
-    /// [`as_slices_mut`](#method.as_slices_mut) methods will return the entire contents of the
+    /// [`as_mut_slices`](#method.as_mut_slices) methods will return the entire contents of the
     /// `VecDeque` in a single slice.
     ///
     /// # Examples