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

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