bcrypt: Documentation
If you supply a cost < MinCost this package will use DefaultCost, not MinCost
R=golang-dev, jeff
CC=golang-dev
https://golang.org/cl/6354100
diff --git a/bcrypt/bcrypt.go b/bcrypt/bcrypt.go
index d1ebee8..35f0d8b 100644
--- a/bcrypt/bcrypt.go
+++ b/bcrypt/bcrypt.go
@@ -83,7 +83,7 @@
// GenerateFromPassword returns the bcrypt hash of the password at the given
// cost. If the cost given is less than MinCost, the cost will be set to
-// MinCost, instead. Use CompareHashAndPassword, as defined in this package,
+// DefaultCost, instead. Use CompareHashAndPassword, as defined in this package,
// to compare the returned hashed password with its cleartext version.
func GenerateFromPassword(password []byte, cost int) ([]byte, error) {
p, err := newFromPassword(password, cost)