about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorJonathan Behrens <fintelia@gmail.com>2018-09-12 14:59:12 -0400
committerJonathan Behrens <fintelia@gmail.com>2018-09-12 14:59:12 -0400
commit2c0f385d0c16c6797788ef5a5f42ac02ced50da1 (patch)
treeba1f66046740efa5d8a3ce9f02c9491ffde740fb /src/libstd
parentad6c7a9a3152245021778140fa57f8d1a8ad8fb6 (diff)
downloadrust-2c0f385d0c16c6797788ef5a5f42ac02ced50da1.tar.gz
rust-2c0f385d0c16c6797788ef5a5f42ac02ced50da1.zip
Fix formatting
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hash/map.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs
index 1a432e5bd3d..bb635a26c31 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -1954,7 +1954,8 @@ impl<'a, K, V, S> RawEntryBuilderMut<'a, K, V, S>
         }
     }
 
-    /// Create a `RawEntryMut` by examining the elements of a hash bucket until `is_match` returns true for one of them.
+    /// Create a `RawEntryMut` by examining the elements of a hash bucket until `is_match` returns
+    /// true for one of them.
     #[unstable(feature = "hash_raw_entry", issue = "42069")]
     pub fn from_bucket<F>(self, hash_bucket: u64, mut is_match: F) -> RawEntryMut<'a, K, V, S>
         where for<'b> F: FnMut(&'b K) -> bool,