diff options
author | kentendo <kenny@kennycosca.com> | 2015-10-05 17:29:49 -0700 |
---|---|---|
committer | kentendo <kenny@kennycosca.com> | 2015-10-05 17:29:49 -0700 |
commit | afe672185d5eba95f387c46f855ae7a21ea69fa5 (patch) | |
tree | c23f080b59ea0c5e48093346f446248fef726684 /guides | |
parent | 69009f4473637a44ade26d954ef5ddea6ff903f2 (diff) | |
download | rails-afe672185d5eba95f387c46f855ae7a21ea69fa5.tar.gz rails-afe672185d5eba95f387c46f855ae7a21ea69fa5.tar.bz2 rails-afe672185d5eba95f387c46f855ae7a21ea69fa5.zip |
Update asset_pipeline.md
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/asset_pipeline.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index 7b8d2d3aef..cc090e27e2 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -169,7 +169,7 @@ directory. Files in this directory are served by the Sprockets middleware. Assets can still be placed in the `public` hierarchy. Any assets under `public` will be served as static files by the application or web server when -`config.serve_static_files` is set to true. You should use `app/assets` for +`config.assets.serve_static_files` is set to true. You should use `app/assets` for files that must undergo some pre-processing before they are served. In production, Rails precompiles these files to `public/assets` by default. The |