diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-06-25 04:20:55 -0700 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-06-25 04:20:55 -0700 |
commit | 79abf07be8f623ae803659c38c2692a234cc7831 (patch) | |
tree | 483de52a1cd68215943a1f790cb6995707386b77 /activemodel/lib | |
parent | aaad6b6e13dd83f64e7c582bbd63bbe0eb6e4814 (diff) | |
parent | 444d3412b90fab2cc0a0d3bab48d8eda3b9fed31 (diff) | |
download | rails-79abf07be8f623ae803659c38c2692a234cc7831.tar.gz rails-79abf07be8f623ae803659c38c2692a234cc7831.tar.bz2 rails-79abf07be8f623ae803659c38c2692a234cc7831.zip |
Merge pull request #11084 from arkiver/master
Fixing issue #11083
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/secure_password.rb | 2 |
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 e553590671..7156f1bb30 100644 --- a/activemodel/lib/active_model/secure_password.rb +++ b/activemodel/lib/active_model/secure_password.rb @@ -15,7 +15,7 @@ module ActiveModel # argument. You can add more validations by hand if need be. # # If you don't need the confirmation validation, just don't set any - # value to the password_confirmation attribute and the the validation + # value to the password_confirmation attribute and the validation # will not be triggered. # # You need to add bcrypt-ruby (~> 3.0.0) to Gemfile to use #has_secure_password: |