about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
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,