From 553ae8b30e4d58585d5b3f3fdfe7f848bd824789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Rica=20Pais=20da=20Silva?= Date: Thu, 29 Feb 2024 18:47:06 +0100 Subject: [PATCH] docs: Clarify WyHash version kinds --- src/hasher.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hasher.rs b/src/hasher.rs index 53efae6..9e44c07 100644 --- a/src/hasher.rs +++ b/src/hasher.rs @@ -24,8 +24,8 @@ use self::{ }; /// The WyHash hasher, a fast & portable hashing algorithm. This implementation is -/// based on the final v4 C reference implementation, as that is compatible with -/// the constants used for the current `WyRand` implementation. +/// based on the final v4/v4.2 C reference implementations (depending on whether the +/// `v4_2` feature flag is enabled or not). /// /// ``` /// use wyrand::WyHash;