mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Fixed spelling mistake in deprecation warning [#381 state:resolved]
This commit is contained in:
@@ -172,13 +172,15 @@ module ActionView #:nodoc:
|
||||
end
|
||||
|
||||
def self.cache_template_loading=(*args)
|
||||
ActiveSupport::Deprecation.warn("config.action_view.cache_template_loading option has been deprecated and has no affect. " <<
|
||||
"Please remove it from your config files.", caller)
|
||||
ActiveSupport::Deprecation.warn(
|
||||
"config.action_view.cache_template_loading option has been deprecated" +
|
||||
"and has no effect. Please remove it from your config files.", caller)
|
||||
end
|
||||
|
||||
def self.cache_template_extensions=(*args)
|
||||
ActiveSupport::Deprecation.warn("config.action_view.cache_template_extensions option has been deprecated and has no effect. " <<
|
||||
"Please remove it from your config files.", caller)
|
||||
ActiveSupport::Deprecation.warn(
|
||||
"config.action_view.cache_template_extensions option has been" +
|
||||
"deprecated and has no effect. Please remove it from your config files.", caller)
|
||||
end
|
||||
|
||||
# Specify whether RJS responses should be wrapped in a try/catch block
|
||||
|
||||
Reference in New Issue
Block a user