1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #3048 from masterkain/patch-2

Fix typo in deprecation notice
This commit is contained in:
Vijay Dev 2011-09-16 10:41:18 -07:00
commit e314b3ff6d

View file

@ -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