aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikac.hu>2019-05-28 12:23:48 +0900
committerGitHub <noreply@github.com>2019-05-28 12:23:48 +0900
commite85eaf49b1a3dd6154ee1cb3561b36a660a62cea (patch)
treebfb1309dcf69b75d7fb58e4386cdd57cf3bff483
parentf09ca65e0f298b39feecf99347deaf2acd2acc10 (diff)
parent2e3d374b53da24ef8c8b72ac1ff727e7eff69cf9 (diff)
downloadrails-e85eaf49b1a3dd6154ee1cb3561b36a660a62cea.tar.gz
rails-e85eaf49b1a3dd6154ee1cb3561b36a660a62cea.tar.bz2
rails-e85eaf49b1a3dd6154ee1cb3561b36a660a62cea.zip
Merge pull request #36346 from corprew/day_of_week_doc_fix
[documentation][ci skip] changes 'Week day' to 'day of week'
-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`.