about summary refs log tree commit diff
path: root/library/alloc/src/collections
diff options
context:
space:
mode:
authorripytide <james.forsterer@gmail.com>2024-02-11 17:15:43 +0000
committerripytide <james.forsterer@gmail.com>2024-02-11 20:26:05 +0000
commitf34d9da7db8447e5616f964bfa65b09a7b45ba3a (patch)
treeb359f0f87d67bab6ffc6fb6aa3c5e841fd8276ee /library/alloc/src/collections
parentf4153390527cc6396d19f68097d34a7a3a1e7edb (diff)
downloadrust-f34d9da7db8447e5616f964bfa65b09a7b45ba3a.tar.gz
rust-f34d9da7db8447e5616f964bfa65b09a7b45ba3a.zip
fix intra-doc links
Diffstat (limited to 'library/alloc/src/collections')
-rw-r--r--library/alloc/src/collections/btree/map.rs24
1 files changed, 12 insertions, 12 deletions
diff --git a/library/alloc/src/collections/btree/map.rs b/library/alloc/src/collections/btree/map.rs
index 770b68c3dde..2b8ddf14ff3 100644
--- a/library/alloc/src/collections/btree/map.rs
+++ b/library/alloc/src/collections/btree/map.rs
@@ -2525,13 +2525,13 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {
     /// Returns a [`Cursor`] pointing at the gap before the smallest key
     /// greater than the given bound.
     ///
-    /// Passing [`Bound::Included(x)`] will return a cursor pointing to the
+    /// Passing `Bound::Included(x)` will return a cursor pointing to the
     /// gap before the smallest key greater than or equal to `x`.
     ///
-    /// Passing [`Bound::Excluded(x)`] will return a cursor pointing to the
+    /// Passing `Bound::Excluded(x)` will return a cursor pointing to the
     /// gap before the smallest key greater than `x`.
     ///
-    /// Passing [`Bound::Unbounded`] will return a cursor pointing to the
+    /// Passing `Bound::Unbounded` will return a cursor pointing to the
     /// gap before the smallest key in the map.
     ///
     /// # Examples
@@ -2578,13 +2578,13 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {
     /// Returns a [`CursorMut`] pointing at the gap before the smallest key
     /// greater than the given bound.
     ///
-    /// Passing [`Bound::Included(x)`] will return a cursor pointing to the
+    /// Passing `Bound::Included(x)` will return a cursor pointing to the
     /// gap before the smallest key greater than or equal to `x`.
     ///
-    /// Passing [`Bound::Excluded(x)`] will return a cursor pointing to the
+    /// Passing `Bound::Excluded(x)` will return a cursor pointing to the
     /// gap before the smallest key greater than `x`.
     ///
-    /// Passing [`Bound::Unbounded`] will return a cursor pointing to the
+    /// Passing `Bound::Unbounded` will return a cursor pointing to the
     /// gap before the smallest key in the map.
     ///
     /// # Examples
@@ -2648,13 +2648,13 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {
     /// Returns a [`Cursor`] pointing at the gap after the greatest key
     /// smaller than the given bound.
     ///
-    /// Passing [`Bound::Included(x)`] will return a cursor pointing to the
+    /// Passing `Bound::Included(x)` will return a cursor pointing to the
     /// gap after the greatest key smaller than or equal to `x`.
     ///
-    /// Passing [`Bound::Excluded(x)`] will return a cursor pointing to the
+    /// Passing `Bound::Excluded(x)` will return a cursor pointing to the
     /// gap after the greatest key smaller than `x`.
     ///
-    /// Passing [`Bound::Unbounded`] will return a cursor pointing to the
+    /// Passing `Bound::Unbounded` will return a cursor pointing to the
     /// gap after the greatest key in the map.
     ///
     /// # Examples
@@ -2701,13 +2701,13 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {
     /// Returns a [`CursorMut`] pointing at the gap after the greatest key
     /// smaller than the given bound.
     ///
-    /// Passing [`Bound::Included(x)`] will return a cursor pointing to the
+    /// Passing `Bound::Included(x)` will return a cursor pointing to the
     /// gap after the greatest key smaller than or equal to `x`.
     ///
-    /// Passing [`Bound::Excluded(x)`] will return a cursor pointing to the
+    /// Passing `Bound::Excluded(x)` will return a cursor pointing to the
     /// gap after the greatest key smaller than `x`.
     ///
-    /// Passing [`Bound::Unbounded`] will return a cursor pointing to the
+    /// Passing `Bound::Unbounded` will return a cursor pointing to the
     /// gap after the greatest key in the map.
     ///
     /// # Examples