From 97f4db17a132f2cb954d812d98ef5a5254217b8b Mon Sep 17 00:00:00 2001 From: Dave Farnham Date: Wed, 1 Nov 2023 17:56:33 -0600 Subject: [PATCH] Update lib.rs 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. //! //! ```