aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/secure_password.rb
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2013-12-24 12:39:41 +0100
committerRobin Dupret <robin.dupret@gmail.com>2013-12-24 12:39:41 +0100
commit6e2d35df3c4ca2b639fa4ed800a8eb2a3742bc58 (patch)
treecf2145cedda4e0580235b8482fe4249c1c18c515 /activemodel/lib/active_model/secure_password.rb
parent6f1d0b517d720683275a4018950c03ae13a65f57 (diff)
downloadrails-6e2d35df3c4ca2b639fa4ed800a8eb2a3742bc58.tar.gz
rails-6e2d35df3c4ca2b639fa4ed800a8eb2a3742bc58.tar.bz2
rails-6e2d35df3c4ca2b639fa4ed800a8eb2a3742bc58.zip
Fix few typos and improve markup at some levels
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