aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2018-12-18 22:32:46 +0100
committerGitHub <noreply@github.com>2018-12-18 22:32:46 +0100
commit5b5319413a611c949cb796351ff42fa0c0299252 (patch)
tree88808c58887ac86dc74fc3b07a3b975dcf0ee7de
parent28dacff5ed188099bdf662426176eeb4ec4c4d73 (diff)
parent61854ac301cef07a23c8982e278bf8c0b1b4c16e (diff)
downloadrails-5b5319413a611c949cb796351ff42fa0c0299252.tar.gz
rails-5b5319413a611c949cb796351ff42fa0c0299252.tar.bz2
rails-5b5319413a611c949cb796351ff42fa0c0299252.zip
Merge pull request #34739 from sambostock/correct-nested-config-documentation
Single nest config in configuration guides
-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 029ae1a5ff..ae1de3079f 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -1404,7 +1404,7 @@ Custom configuration
You can configure your own code through the Rails configuration object with
custom configuration under either the `config.x` namespace, or `config` directly.
The key difference between these two is that you should be using `config.x` if you
-are defining _nested_ configuration (ex: `config.x.nested.nested.hi`), and just
+are defining _nested_ configuration (ex: `config.x.nested.hi`), and just
`config` for _single level_ configuration (ex: `config.hello`).
```ruby