From 9387633dd1e9662e5ea2faa3a61e4750909bfd47 Mon Sep 17 00:00:00 2001 From: Dave Farnham Date: Wed, 8 Nov 2023 10:08:16 -0700 Subject: [PATCH] Update lib.rs (#470) Minor word fix in description --- pbkdf2/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pbkdf2/src/lib.rs b/pbkdf2/src/lib.rs index 415c4383..027c2f84 100644 --- a/pbkdf2/src/lib.rs +++ b/pbkdf2/src/lib.rs @@ -6,7 +6,7 @@ //! PBKDF2 is defined in terms of a keyed pseudo-random function (PRF). Most //! commonly HMAC is used as this PRF. In such cases you can use [`pbkdf2_hmac`] //! and [`pbkdf2_hmac_array`] functions. The former accepts a byte slice which -//! gets filled with generated key, while the former returns an array with +//! gets filled with generated key, while the latter returns an array with //! generated key of requested length. //! //! ```