@@ -291,7 +291,7 @@ impl<K, V> HashMap<K, V, DefaultHashBuilder> {
291
291
/// is first inserted into.
292
292
///
293
293
/// # HashDoS resistance
294
- ///
294
+ ///
295
295
/// The `hash_builder` normally use a fixed key by default and that does
296
296
/// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
297
297
/// Users who require HashDoS resistance should explicitly use
@@ -321,7 +321,7 @@ impl<K, V> HashMap<K, V, DefaultHashBuilder> {
321
321
/// reallocating. If `capacity` is 0, the hash map will not allocate.
322
322
///
323
323
/// # HashDoS resistance
324
- ///
324
+ ///
325
325
/// The `hash_builder` normally use a fixed key by default and that does
326
326
/// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
327
327
/// Users who require HashDoS resistance should explicitly use
@@ -354,7 +354,7 @@ impl<K, V, A: Allocator + Clone> HashMap<K, V, DefaultHashBuilder, A> {
354
354
/// is first inserted into.
355
355
///
356
356
/// # HashDoS resistance
357
- ///
357
+ ///
358
358
/// The `hash_builder` normally use a fixed key by default and that does
359
359
/// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
360
360
/// Users who require HashDoS resistance should explicitly use
@@ -405,7 +405,7 @@ impl<K, V, A: Allocator + Clone> HashMap<K, V, DefaultHashBuilder, A> {
405
405
/// reallocating. If `capacity` is 0, the hash map will not allocate.
406
406
///
407
407
/// # HashDoS resistance
408
- ///
408
+ ///
409
409
/// The `hash_builder` normally use a fixed key by default and that does
410
410
/// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
411
411
/// Users who require HashDoS resistance should explicitly use
@@ -464,7 +464,7 @@ impl<K, V, S> HashMap<K, V, S> {
464
464
/// allocate until it is first inserted into.
465
465
///
466
466
/// # HashDoS resistance
467
- ///
467
+ ///
468
468
/// The `hash_builder` normally use a fixed key by default and that does
469
469
/// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
470
470
/// Users who require HashDoS resistance should explicitly use
@@ -506,7 +506,7 @@ impl<K, V, S> HashMap<K, V, S> {
506
506
/// reallocating. If `capacity` is 0, the hash map will not allocate.
507
507
///
508
508
/// # HashDoS resistance
509
- ///
509
+ ///
510
510
/// The `hash_builder` normally use a fixed key by default and that does
511
511
/// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
512
512
/// Users who require HashDoS resistance should explicitly use
@@ -556,7 +556,7 @@ impl<K, V, S, A: Allocator + Clone> HashMap<K, V, S, A> {
556
556
/// is first inserted into.
557
557
///
558
558
/// # HashDoS resistance
559
- ///
559
+ ///
560
560
/// The `hash_builder` normally use a fixed key by default and that does
561
561
/// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
562
562
/// Users who require HashDoS resistance should explicitly use
@@ -591,7 +591,7 @@ impl<K, V, S, A: Allocator + Clone> HashMap<K, V, S, A> {
591
591
/// reallocating. If `capacity` is 0, the hash map will not allocate.
592
592
///
593
593
/// # HashDoS resistance
594
- ///
594
+ ///
595
595
/// The `hash_builder` normally use a fixed key by default and that does
596
596
/// not allow the `HashMap` to be protected against attacks such as [`HashDoS`].
597
597
/// Users who require HashDoS resistance should explicitly use
0 commit comments