diff options
author | Steve Klabnik <steve@steveklabnik.com> | 2012-11-29 04:36:22 -0800 |
---|---|---|
committer | Steve Klabnik <steve@steveklabnik.com> | 2012-11-29 04:36:22 -0800 |
commit | 4d1053f395b0c2eef711d34d02ca3ac3cfb3ebf0 (patch) | |
tree | 86658b282a42349424278e86e72e28e6f183a63a /guides | |
parent | 27138386ad8dbda2eb44e622515626f352fd3b22 (diff) | |
download | rails-4d1053f395b0c2eef711d34d02ca3ac3cfb3ebf0.tar.gz rails-4d1053f395b0c2eef711d34d02ca3ac3cfb3ebf0.tar.bz2 rails-4d1053f395b0c2eef711d34d02ca3ac3cfb3ebf0.zip |
ActionPack -> Action Pack.
The proper name has a space.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 9838e02d1a..295b5148ae 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -76,7 +76,7 @@ Rails 4.0 removed the `ActionController::Base.asset_path` option. Use the assets Rails 4.0 has deprecated `ActionController::Base.page_cache_extension` option. Use `ActionController::Base.default_static_extension` instead. -Rails 4.0 has removed Action and Page caching from ActionPack. You will need to +Rails 4.0 has removed Action and Page caching from Action Pack. You will need to add the `actionpack-action_caching` gem in order to use `caches_action` and the `actionpack-page_caching` to use `caches_pages` in your controllers. |