From 1288127d8ebc0346ae3c8cb82dcf999a3f85b0df Mon Sep 17 00:00:00 2001 From: tom-bop Date: Thu, 30 Aug 2018 15:54:03 +0000 Subject: [PATCH] Fix typo in bcrypt example --- Crypto/KDF/BCrypt.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto/KDF/BCrypt.hs b/Crypto/KDF/BCrypt.hs index b374b4f..d6f7d5d 100644 --- a/Crypto/KDF/BCrypt.hs +++ b/Crypto/KDF/BCrypt.hs @@ -11,7 +11,7 @@ -- >>> validatePassword password bcryptHash -- >>> True -- >>> let otherPassword = B.pack "otherpassword" --- >>> otherHash <- hashPassword 12 otherPasssword :: IO B.ByteString +-- >>> otherHash <- hashPassword 12 otherPassword :: IO B.ByteString -- >>> validatePassword otherPassword otherHash -- >>> True --