about summary refs log tree commit diff
path: root/src/liballoc/collections
diff options
context:
space:
mode:
authorTyler Ruckinger <t.ruckinger@gmail.com>2020-04-23 10:40:28 -0400
committerTyler Ruckinger <t.ruckinger@gmail.com>2020-04-23 10:40:28 -0400
commit547219c7e4f375f1ae8dcbfadce2fec4ae639730 (patch)
treecabe3f1f15eda3550f49e623d50e44cf8ff1dcc2 /src/liballoc/collections
parentb2e36e6c2d229126b59e892c9147fbb68115d292 (diff)
downloadrust-547219c7e4f375f1ae8dcbfadce2fec4ae639730.tar.gz
rust-547219c7e4f375f1ae8dcbfadce2fec4ae639730.zip
Fix doc link errors
Diffstat (limited to 'src/liballoc/collections')
-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 a3b61f1f4a5..2f50234b6d5 100644
--- a/src/liballoc/collections/vec_deque.rs
+++ b/src/liballoc/collections/vec_deque.rs
@@ -73,7 +73,7 @@ pub struct VecDeque<T> {
 /// It produces the following sequence of matching slices:
 ///
 /// ([0 1], [a b])
-/// ([2], [c])
+/// (\[2\], \[c\])
 /// ([3 4], [d e])
 ///
 /// and the uneven remainder of either A or B is skipped.