aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorCorprew Reed <github@corprew.org>2019-05-27 18:43:41 -0700
committerGitHub <noreply@github.com>2019-05-27 18:43:41 -0700
commit2e3d374b53da24ef8c8b72ac1ff727e7eff69cf9 (patch)
treebfb1309dcf69b75d7fb58e4386cdd57cf3bff483 /guides/source
parentf09ca65e0f298b39feecf99347deaf2acd2acc10 (diff)
downloadrails-2e3d374b53da24ef8c8b72ac1ff727e7eff69cf9.tar.gz
rails-2e3d374b53da24ef8c8b72ac1ff727e7eff69cf9.tar.bz2
rails-2e3d374b53da24ef8c8b72ac1ff727e7eff69cf9.zip
changes 'Week day' to 'day of week'
'Week day' has a specific meaning in English -- see https://en.wiktionary.org/wiki/weekday for details -- that is not meant here. 'Day of week' is more appropriate. [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 0b54683b5a..cc64c7eac6 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -69,7 +69,7 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
* `config.cache_classes` controls whether or not application classes and modules should be reloaded on each request. Defaults to `false` in development mode, and `true` in test and production modes.
* `config.beginning_of_week` sets the default beginning of week for the
-application. Accepts a valid week day symbol (e.g. `:monday`).
+application. Accepts a valid day of week as a symbol (e.g. `:monday`).
* `config.cache_store` configures which cache store to use for Rails caching. Options include one of the symbols `:memory_store`, `:file_store`, `:mem_cache_store`, `:null_store`, `:redis_cache_store`, or an object that implements the cache API. Defaults to `:file_store`.