diff options
author | Mikel Lindsaar <mikel@rubyx.com> | 2010-12-19 20:54:15 +1100 |
---|---|---|
committer | Mikel Lindsaar <mikel@rubyx.com> | 2010-12-19 20:54:15 +1100 |
commit | fa14df08a845abc61a6ed5bed1742ba59a4c2b8d (patch) | |
tree | 2d1135ddb27bece23b19f18765786cdf52339a9b /activemodel/lib | |
parent | a39a3337698ca42ab158dc3b4b08ea75039b8a89 (diff) | |
download | rails-fa14df08a845abc61a6ed5bed1742ba59a4c2b8d.tar.gz rails-fa14df08a845abc61a6ed5bed1742ba59a4c2b8d.tar.bz2 rails-fa14df08a845abc61a6ed5bed1742ba59a4c2b8d.zip |
Fix incorrect docs
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/secure_password.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/activemodel/lib/active_model/secure_password.rb b/activemodel/lib/active_model/secure_password.rb index 06af18dfd1..c5f32fa3fa 100644 --- a/activemodel/lib/active_model/secure_password.rb +++ b/activemodel/lib/active_model/secure_password.rb @@ -42,9 +42,7 @@ module ActiveModel end # Allows you to specify the set of weak passwords that will be validated against - # if you specify has_secure_password in your model. - # - # The default set of weak passwords are: + # if you specify has_secure_password in your model: # # class User < ActiveRecord::Base # weak_passwords = %w( password qwerty 123456 mypass ) |