diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-07-19 15:43:39 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-07-19 15:43:39 -0500 |
commit | 598b4546fd505efd98c4955f4881b4fd5b953588 (patch) | |
tree | 75d1dac900b666ae267595273137fb240b4aeb6c /actionpack | |
parent | 55bfe6be52da1130abb1c148f10d8e9a11368ffd (diff) | |
download | rails-598b4546fd505efd98c4955f4881b4fd5b953588.tar.gz rails-598b4546fd505efd98c4955f4881b4fd5b953588.tar.bz2 rails-598b4546fd505efd98c4955f4881b4fd5b953588.zip |
Fixed spelling mistake in deprecation warning [#381 state:resolved]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/base.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb index fe51af62e6..619a4270f8 100644 --- a/actionpack/lib/action_view/base.rb +++ b/actionpack/lib/action_view/base.rb @@ -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 |