Fix a spelling error in HashMap documentation, and slightly reword it to be more precise.

This commit is contained in:
Jeff Walden 2017-03-17 17:15:01 -07:00
parent a559452b05
commit 2976ddbb15
1 changed files with 2 additions and 2 deletions

View File

@ -222,8 +222,8 @@ const DISPLACEMENT_THRESHOLD: usize = 128;
/// resistance against HashDoS attacks. The algorithm is randomly seeded, and a
/// reasonable best-effort is made to generate this seed from a high quality,
/// secure source of randomness provided by the host without blocking the
/// program. Because of this, the randomness of the seed is dependant on the
/// quality of the system's random number generator at the time it is created.
/// program. Because of this, the randomness of the seed depends on the output
/// quality of the system's random number generator when the seed is created.
/// In particular, seeds generated when the system's entropy pool is abnormally
/// low such as during system boot may be of a lower quality.
///