diff --git a/src/thread_local_entropy.rs b/src/thread_local_entropy.rs index 8e9271d..6898a26 100644 --- a/src/thread_local_entropy.rs +++ b/src/thread_local_entropy.rs @@ -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); }