diff options
author | Melanie Gilman <melanie@thoughtbot.com> | 2015-03-03 20:05:02 -0500 |
---|---|---|
committer | Melanie Gilman <melanie@thoughtbot.com> | 2015-03-03 20:05:02 -0500 |
commit | 903493871468d5d7bbca9eb9d3efae187afdb8b0 (patch) | |
tree | ce8b48febf94897e53dee44b78ee1011a3849eb5 | |
parent | 33ae6344834fdf71b93e0b6db899b58e017a7655 (diff) | |
download | rails-903493871468d5d7bbca9eb9d3efae187afdb8b0.tar.gz rails-903493871468d5d7bbca9eb9d3efae187afdb8b0.tar.bz2 rails-903493871468d5d7bbca9eb9d3efae187afdb8b0.zip |
Fix spelling error in has_secure_password documentation [ci skip]
-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 871031ece4..89da74efa8 100644 --- a/activemodel/lib/active_model/secure_password.rb +++ b/activemodel/lib/active_model/secure_password.rb @@ -26,7 +26,7 @@ module ActiveModel # it). When this attribute has a +nil+ value, the validation will not be # triggered. # - # For further customizability, it is possible to supress the default + # For further customizability, it is possible to suppress the default # validations by passing <tt>validations: false</tt> as an argument. # # Add bcrypt (~> 3.1.7) to Gemfile to use #has_secure_password: |