go.crypto/blowfish: fix typo in docstring in cipher.go Change-Id: I1b968decc23de5b7f635dcbc4133b1ab3745ff88 Reviewed-on: https://go-review.googlesource.com/23851 Reviewed-by: Ian Lance Taylor <iant@golang.org>
diff --git a/blowfish/cipher.go b/blowfish/cipher.go index 542984a..a73954f 100644 --- a/blowfish/cipher.go +++ b/blowfish/cipher.go
@@ -39,7 +39,7 @@ // NewSaltedCipher creates a returns a Cipher that folds a salt into its key // schedule. For most purposes, NewCipher, instead of NewSaltedCipher, is -// sufficient and desirable. For bcrypt compatiblity, the key can be over 56 +// sufficient and desirable. For bcrypt compatibility, the key can be over 56 // bytes. func NewSaltedCipher(key, salt []byte) (*Cipher, error) { if len(salt) == 0 {