about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChai T. Rex <ChaiTRex@users.noreply.github.com>2020-12-07 21:59:52 -0500
committerGitHub <noreply@github.com>2020-12-07 21:59:52 -0500
commitf115be93abd2634f3d71d91bf1341e9860a87056 (patch)
treecd0a52e41fa3e063a419aab11e3ed259a0bcffab
parentf1b930d57cd9014a4e97c2b0ac366c8fa51f38c7 (diff)
downloadrust-f115be93abd2634f3d71d91bf1341e9860a87056.tar.gz
rust-f115be93abd2634f3d71d91bf1341e9860a87056.zip
Removed spurious linebreak from new documentation
-rw-r--r--library/alloc/src/collections/btree/map/entry.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/collections/btree/map/entry.rs b/library/alloc/src/collections/btree/map/entry.rs
index 9dd68e27914..6626124a34e 100644
--- a/library/alloc/src/collections/btree/map/entry.rs
+++ b/library/alloc/src/collections/btree/map/entry.rs
@@ -118,7 +118,7 @@ impl<'a, K: Ord, V> Entry<'a, K, V> {
 
     /// Ensures a value is in the entry by inserting, if empty, the result of the default function.
     /// This method allows for generating key-derived values for insertion by providing the default
-    /// function a reference to the key that was moved during the `.entry(key)` method call.<br />
+    /// function a reference to the key that was moved during the `.entry(key)` method call.
     ///
     /// The reference to the moved key is provided so that cloning or copying the key is
     /// unnecessary, unlike with `.or_insert_with(|| ... )`.