Fix typo in bcrypt example

This commit is contained in:
tom-bop 2018-08-30 15:54:03 +00:00 committed by ___
parent 4622e5fc8e
commit 1288127d8e

View File

@ -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
--