diff options
author | chen7897499 <476964702@qq.com> | 2016-07-07 14:34:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-07 14:34:31 +0800 |
commit | e3392642b8770477a4352a7f3f56a9af92789eaf (patch) | |
tree | 2b3ece5772f89fe0454ea2db4bebd455dfe80c9f /guides | |
parent | e4edddede306bc86409388eeec0abd8a8196c15e (diff) | |
download | rails-e3392642b8770477a4352a7f3f56a9af92789eaf.tar.gz rails-e3392642b8770477a4352a7f3f56a9af92789eaf.tar.bz2 rails-e3392642b8770477a4352a7f3f56a9af92789eaf.zip |
Fix typo: caches_pages to caches_page.
Fix a small typo on doc: "caches_pages" -> "caches_page".
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 c41876cd28..2ac5a2188b 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -1185,7 +1185,7 @@ Please read [Pull Request #9978](https://github.com/rails/rails/pull/9978) for d * 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 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. +* 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_page` in your controllers. * Rails 4.0 has removed the XML parameters parser. You will need to add the `actionpack-xml_parser` gem if you require this feature. |