diff options
author | Igor Zubkov <igor.zubkov@gmail.com> | 2011-07-21 14:58:20 +0300 |
---|---|---|
committer | Igor Zubkov <igor.zubkov@gmail.com> | 2011-07-21 14:58:20 +0300 |
commit | e7a7591087656a4d81bada63699e3eb0b2450928 (patch) | |
tree | 9ed5eeeb4f5bc0ba2025c0f206780222b93a4bc0 /railties/guides/source/asset_pipeline.textile | |
parent | 840ca47a46d96c3377b645005ae1a70aeade0d41 (diff) | |
download | rails-e7a7591087656a4d81bada63699e3eb0b2450928.tar.gz rails-e7a7591087656a4d81bada63699e3eb0b2450928.tar.bz2 rails-e7a7591087656a4d81bada63699e3eb0b2450928.zip |
Fix typo
Diffstat (limited to 'railties/guides/source/asset_pipeline.textile')
-rw-r--r-- | railties/guides/source/asset_pipeline.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile index e4db2d7928..0d29b77b63 100644 --- a/railties/guides/source/asset_pipeline.textile +++ b/railties/guides/source/asset_pipeline.textile @@ -208,7 +208,7 @@ For some assets (like CSS) the compiled order is important. You can specify indi h4. Preprocessing -The file extensions used on an asset will determine what preprocssing will be applied. When a controller or a scaffold is generated with the default Rails gemset, a CoffeeScript file and a SCSS file will be generated in place of a regular JavaScript and CSS file. The example used before was a controller called "projects", which generated an +app/assets/javascripts/projects.js.coffee+ and a +app/assets/stylesheets/projects.css.scss+ file. +The file extensions used on an asset will determine what preprocessing will be applied. When a controller or a scaffold is generated with the default Rails gemset, a CoffeeScript file and a SCSS file will be generated in place of a regular JavaScript and CSS file. The example used before was a controller called "projects", which generated an +app/assets/javascripts/projects.js.coffee+ and a +app/assets/stylesheets/projects.css.scss+ file. When these files are requested, they will be processed by the processors provided by the +coffee-script+ and +sass-rails+ gems and then sent back to the browser as JavaScript and CSS respectively. |