diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-09-16 10:41:18 -0700 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-09-16 10:41:18 -0700 |
commit | e314b3ff6d074ee0ea4c314e6ca1083469780449 (patch) | |
tree | dc8b64086248893f97d424fa202a001a7d7138f8 | |
parent | d5bf12aca61a1c8673bbe04bde23b34d0e5aea39 (diff) | |
parent | b0ae34ad72ed8410e6f16c1d9ee4b04b2630208f (diff) | |
download | rails-e314b3ff6d074ee0ea4c314e6ca1083469780449.tar.gz rails-e314b3ff6d074ee0ea4c314e6ca1083469780449.tar.bz2 rails-e314b3ff6d074ee0ea4c314e6ca1083469780449.zip |
Merge pull request #3048 from masterkain/patch-2
Fix typo in deprecation notice
-rw-r--r-- | activesupport/lib/active_support/message_verifier.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/message_verifier.rb b/activesupport/lib/active_support/message_verifier.rb index 57317028fc..9d7c81142a 100644 --- a/activesupport/lib/active_support/message_verifier.rb +++ b/activesupport/lib/active_support/message_verifier.rb @@ -28,7 +28,7 @@ module ActiveSupport def initialize(secret, options = {}) unless options.is_a?(Hash) - ActiveSupport::Deprecation.warn "The second parameter should be an options hash. Use :digest => 'algorithm' to sepcify the digest algorithm." + ActiveSupport::Deprecation.warn "The second parameter should be an options hash. Use :digest => 'algorithm' to specify the digest algorithm." options = { :digest => options } end |