From 90eb3746b289e79f38252f01ae127bc99085a9b9 Mon Sep 17 00:00:00 2001 From: Connor Shea Date: Fri, 29 Apr 2016 12:27:27 -0600 Subject: Fix typos in asset_pipeline.md [ci skip] Per discussion in #24786. --- guides/source/asset_pipeline.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guides/source') diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index bb04e5e94c..93acebf000 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -1115,8 +1115,8 @@ assets. ### Serving GZipped version of assets By default, gzipped version of compiled assets will be generated, along -with the non-gzipped version of assets. Gzipped assets help reduce, the transmission of -date over the wire. You can configure this by setting the `gzip` flag. +with the non-gzipped version of assets. Gzipped assets help reduce the transmission of +data over the wire. You can configure this by setting the `gzip` flag. ```ruby config.assets.gzip = false # disable gzipped assets generation -- cgit v1.2.3 From 58911cccbfb65b050d85270d1f447a957e3110dc Mon Sep 17 00:00:00 2001 From: Connor Shea Date: Fri, 29 Apr 2016 12:28:50 -0600 Subject: Consistent spelling of "gzipped" [ci skip] --- guides/source/configuring.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source') diff --git a/guides/source/configuring.md b/guides/source/configuring.md index b22dc27743..6728e0ea76 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -163,7 +163,7 @@ pipeline is enabled. It is set to true by default. * `config.assets.js_compressor` defines the JavaScript compressor to use. Possible values are `:closure`, `:uglifier` and `:yui` which require the use of the `closure-compiler`, `uglifier` or `yui-compressor` gems respectively. -* `config.assets.gzip` a flag that enables the creation of gziped version of compiled assets, along with non-gziped assets. Set to `true` by default. +* `config.assets.gzip` a flag that enables the creation of gzipped version of compiled assets, along with non-gzipped assets. Set to `true` by default. * `config.assets.paths` contains the paths which are used to look for assets. Appending paths to this configuration option will cause those paths to be used in the search for assets. -- cgit v1.2.3