diff options
author | Claudio Poli <masterkain@gmail.com> | 2011-09-16 19:54:48 +0300 |
---|---|---|
committer | Claudio Poli <masterkain@gmail.com> | 2011-09-16 19:54:48 +0300 |
commit | b0ae34ad72ed8410e6f16c1d9ee4b04b2630208f (patch) | |
tree | dc8b64086248893f97d424fa202a001a7d7138f8 /activesupport/lib | |
parent | d5bf12aca61a1c8673bbe04bde23b34d0e5aea39 (diff) | |
download | rails-b0ae34ad72ed8410e6f16c1d9ee4b04b2630208f.tar.gz rails-b0ae34ad72ed8410e6f16c1d9ee4b04b2630208f.tar.bz2 rails-b0ae34ad72ed8410e6f16c1d9ee4b04b2630208f.zip |
Fix typo in deprecation notice
Diffstat (limited to 'activesupport/lib')
-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 |