@@ -291,7 +291,7 @@ impl<K, V> HashMap<K, V, DefaultHashBuilder> {
291291 /// is first inserted into.
292292 ///
293293 /// # HashDoS resistance
294- ///
294+ ///
295295 /// The `hash_builder` normally use a fixed key by default and that does
296296 /// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
297297 /// Users who require HashDoS resistance should explicitly use
@@ -321,7 +321,7 @@ impl<K, V> HashMap<K, V, DefaultHashBuilder> {
321321 /// reallocating. If `capacity` is 0, the hash map will not allocate.
322322 ///
323323 /// # HashDoS resistance
324- ///
324+ ///
325325 /// The `hash_builder` normally use a fixed key by default and that does
326326 /// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
327327 /// Users who require HashDoS resistance should explicitly use
@@ -354,7 +354,7 @@ impl<K, V, A: Allocator + Clone> HashMap<K, V, DefaultHashBuilder, A> {
354354 /// is first inserted into.
355355 ///
356356 /// # HashDoS resistance
357- ///
357+ ///
358358 /// The `hash_builder` normally use a fixed key by default and that does
359359 /// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
360360 /// Users who require HashDoS resistance should explicitly use
@@ -405,7 +405,7 @@ impl<K, V, A: Allocator + Clone> HashMap<K, V, DefaultHashBuilder, A> {
405405 /// reallocating. If `capacity` is 0, the hash map will not allocate.
406406 ///
407407 /// # HashDoS resistance
408- ///
408+ ///
409409 /// The `hash_builder` normally use a fixed key by default and that does
410410 /// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
411411 /// Users who require HashDoS resistance should explicitly use
@@ -464,7 +464,7 @@ impl<K, V, S> HashMap<K, V, S> {
464464 /// allocate until it is first inserted into.
465465 ///
466466 /// # HashDoS resistance
467- ///
467+ ///
468468 /// The `hash_builder` normally use a fixed key by default and that does
469469 /// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
470470 /// Users who require HashDoS resistance should explicitly use
@@ -506,7 +506,7 @@ impl<K, V, S> HashMap<K, V, S> {
506506 /// reallocating. If `capacity` is 0, the hash map will not allocate.
507507 ///
508508 /// # HashDoS resistance
509- ///
509+ ///
510510 /// The `hash_builder` normally use a fixed key by default and that does
511511 /// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
512512 /// Users who require HashDoS resistance should explicitly use
@@ -556,7 +556,7 @@ impl<K, V, S, A: Allocator + Clone> HashMap<K, V, S, A> {
556556 /// is first inserted into.
557557 ///
558558 /// # HashDoS resistance
559- ///
559+ ///
560560 /// The `hash_builder` normally use a fixed key by default and that does
561561 /// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
562562 /// Users who require HashDoS resistance should explicitly use
@@ -591,7 +591,7 @@ impl<K, V, S, A: Allocator + Clone> HashMap<K, V, S, A> {
591591 /// reallocating. If `capacity` is 0, the hash map will not allocate.
592592 ///
593593 /// # HashDoS resistance
594- ///
594+ ///
595595 /// The `hash_builder` normally use a fixed key by default and that does
596596 /// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
597597 /// Users who require HashDoS resistance should explicitly use
0 commit comments