From e4f2697342216019a06690a429d8f32ced4e6a4e Mon Sep 17 00:00:00 2001 From: Kaz Wesley Date: Thu, 21 May 2020 01:04:41 -0700 Subject: [PATCH] comment phrasing: avoid confusing overloaded term --- rand_chacha/src/guts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rand_chacha/src/guts.rs b/rand_chacha/src/guts.rs index 105906c17f..106c753656 100644 --- a/rand_chacha/src/guts.rs +++ b/rand_chacha/src/guts.rs @@ -92,7 +92,7 @@ impl ChaCha { get_stream_param(self, param) } - /// Return whether rhs represents the same stream, irrespective of current 64-bit position. + /// Return whether rhs is equal in all parameters except current 64-bit position. #[inline] pub fn stream64_eq(&self, rhs: &Self) -> bool { let self_d: [u32; 4] = self.d.into();