aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorRichard Schneeman <richard.schneeman@gmail.com>2014-04-20 12:46:03 -0500
committerRichard Schneeman <richard.schneeman@gmail.com>2014-04-20 12:46:03 -0500
commit86b02826a6d301fe19c30a6f5c01a9e084279c03 (patch)
treec9f4bb4f6f5670074c8f93530711905619b77922 /guides/source/configuring.md
parent0044bfb1884d311014ba30fe2a96925a3d7c0cc6 (diff)
parent0c2854fa0302acfeb27f1316f2163b3c1dfc4f95 (diff)
downloadrails-86b02826a6d301fe19c30a6f5c01a9e084279c03.tar.gz
rails-86b02826a6d301fe19c30a6f5c01a9e084279c03.tar.bz2
rails-86b02826a6d301fe19c30a6f5c01a9e084279c03.zip
Merge pull request #14820 from akshay-vishnoi/doc_changes
[ci skip] builtin -> built-in
Diffstat (limited to 'guides/source/configuring.md')
-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 805f4bb81f..ae382fc54d 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -56,7 +56,7 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
end
```
-* `config.asset_host` sets the host for the assets. Useful when CDNs are used for hosting assets, or when you want to work around the concurrency constraints builtin in browsers using different domain aliases. Shorter version of `config.action_controller.asset_host`.
+* `config.asset_host` sets the host for the assets. Useful when CDNs are used for hosting assets, or when you want to work around the concurrency constraints built-in in browsers using different domain aliases. Shorter version of `config.action_controller.asset_host`.
* `config.autoload_once_paths` accepts an array of paths from which Rails will autoload constants that won't be wiped per request. Relevant if `config.cache_classes` is false, which is the case in development mode by default. Otherwise, all autoloading happens only once. All elements of this array must also be in `autoload_paths`. Default is an empty array.