Skip to content

Commit 753cb01

Browse files
committed
Always captilize the framework name
1 parent b56cab2 commit 753cb01

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

guides/source/caching_with_rails.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fragment caching. By default Rails provides fragment caching. In order to use
3434
page and action caching you will need to add `actionpack-page_caching` and
3535
`actionpack-action_caching` to your `Gemfile`.
3636

37-
By default, action controller caching is only enabled in your production environment. You can play
37+
By default, Action Controller caching is only enabled in your production environment. You can play
3838
around with caching locally by running `rails dev:cache`, or by setting
3939
[`config.action_controller.perform_caching`][] to `true` in `config/environments/development.rb`.
4040

@@ -724,7 +724,7 @@ By default, caching is *enabled* in development mode with
724724
[`:memory_store`](#activesupport-cache-memorystore).
725725

726726
Rails also provides the rails command `dev:cache` to
727-
easily toggle action controller caching on/off.
727+
easily toggle Action Controller caching on/off.
728728

729729
```bash
730730
$ bin/rails dev:cache

railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Rails.application.configure do
1717
# Enable server timing.
1818
config.server_timing = true
1919

20-
# Enable/disable action controller caching. By default action controller caching is disabled.
21-
# Run rails dev:cache to toggle action controller caching.
20+
# Enable/disable Action Controller caching. By default Action Controller caching is disabled.
21+
# Run rails dev:cache to toggle Action Controller caching.
2222
if Rails.root.join("tmp/caching-dev.txt").exist?
2323
<%- unless options.api? -%>
2424
config.action_controller.perform_caching = true

0 commit comments

Comments
 (0)