aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorMohammad Typaldos <mohammad.elabid@gmail.com>2011-05-29 06:45:57 -0400
committerMohammad Typaldos <mohammad.elabid@gmail.com>2011-05-29 06:45:57 -0400
commit07dcae093b0cd6fbe80e361ca0f603cd143a079b (patch)
treee6e626b6e63a882f4d10b61e457c86c5f56f8498 /railties/guides
parent9342ad67486f96357e518becb71ec225e0bd216e (diff)
downloadrails-07dcae093b0cd6fbe80e361ca0f603cd143a079b.tar.gz
rails-07dcae093b0cd6fbe80e361ca0f603cd143a079b.tar.bz2
rails-07dcae093b0cd6fbe80e361ca0f603cd143a079b.zip
Fixes spelling mistakes pointed out by @vijaydev
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/asset_pipeline.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile
index ee8deaaad1..74e26ccc71 100644
--- a/railties/guides/source/asset_pipeline.textile
+++ b/railties/guides/source/asset_pipeline.textile
@@ -14,7 +14,7 @@ h3. What Is The Asset Pipeline?
h4. Why Should I Use it?
-Using the asset pipeline allows you to package javascript, CSS, or images with your Rails application, library, or plugin. It also makes it easy to create dynamic CSS with LESS and clean JavaScript with CoffeeScript to name a few of the popular preprocessors. The big difference is that they are now categorized in app/assets, treating them like first-class citizens instead of just throughing them into categorized folders in the public directory.
+Using the asset pipeline allows you to package JavaScript, CSS, or images with your Rails application, library, or plugin. It also makes it easy to create dynamic CSS with LESS and clean JavaScript with CoffeeScript to name a few of the popular preprocessors. The big difference is that they are now categorized in app/assets, treating them like first-class citizens instead of just throwing them into categorized folders in the public directory.
h3. How to Use the Asset Pipeline