aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/secure_password.rb
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2013-12-31 22:44:34 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2013-12-31 22:44:34 +0530
commitc4fb191a4cc246db849f7acf31bd7edb4664cca5 (patch)
tree86056ba35c3b8f0432fbf8b4bee45732f24150d4 /activemodel/lib/active_model/secure_password.rb
parentf3a8be3b8be496cd5de14e9c29de3748432d5da0 (diff)
parent6e2d35df3c4ca2b639fa4ed800a8eb2a3742bc58 (diff)
downloadrails-c4fb191a4cc246db849f7acf31bd7edb4664cca5.tar.gz
rails-c4fb191a4cc246db849f7acf31bd7edb4664cca5.tar.bz2
rails-c4fb191a4cc246db849f7acf31bd7edb4664cca5.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'activemodel/lib/active_model/secure_password.rb')
-rw-r--r--activemodel/lib/active_model/secure_password.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/secure_password.rb b/activemodel/lib/active_model/secure_password.rb
index 7e694b5c50..9d891b9ddc 100644
--- a/activemodel/lib/active_model/secure_password.rb
+++ b/activemodel/lib/active_model/secure_password.rb
@@ -9,7 +9,7 @@ module ActiveModel
module ClassMethods
# Adds methods to set and authenticate against a BCrypt password.
- # This mechanism requires you to have a password_digest attribute.
+ # This mechanism requires you to have a +password_digest+ attribute.
#
# Validations for presence of password on create, confirmation of password
# (using a +password_confirmation+ attribute) are automatically added. If