Skip to content

Commit

Permalink
chore: Cleanup reference to cloing ThreadLocalEntropy
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluefinger committed Feb 21, 2024
1 parent ff36c70 commit ba91c15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/thread_local_entropy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ mod tests {
rng1.fill_bytes(&mut bytes1);
rng2.fill_bytes(&mut bytes2);

// Cloned ThreadLocalEntropy instances won't output the same entropy
// ThreadLocalEntropy instances won't output the same entropy as the
// underlying thread local source gets mutated each access.
assert_ne!(&bytes1, &bytes2);
}

Expand Down

0 comments on commit ba91c15

Please sign in to comment.