diff options
author | Akshay Khole <akshay@reversehack.in> | 2013-06-25 15:55:03 +0530 |
---|---|---|
committer | Akshay Khole <akshay@reversehack.in> | 2013-06-25 16:47:29 +0530 |
commit | 444d3412b90fab2cc0a0d3bab48d8eda3b9fed31 (patch) | |
tree | 483de52a1cd68215943a1f790cb6995707386b77 /activemodel/lib/active_model/secure_password.rb | |
parent | aaad6b6e13dd83f64e7c582bbd63bbe0eb6e4814 (diff) | |
download | rails-444d3412b90fab2cc0a0d3bab48d8eda3b9fed31.tar.gz rails-444d3412b90fab2cc0a0d3bab48d8eda3b9fed31.tar.bz2 rails-444d3412b90fab2cc0a0d3bab48d8eda3b9fed31.zip |
Fixing Issue #11083
Removing other occurrences of `the` appearing twice
Diffstat (limited to 'activemodel/lib/active_model/secure_password.rb')
-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: |