diff options
author | Roy Tomeij <roy@tomeij.net> | 2011-10-09 13:45:54 +0200 |
---|---|---|
committer | Roy Tomeij <roy@tomeij.net> | 2011-10-09 13:45:54 +0200 |
commit | d214e54e7aadd15bbf872c3deae24908258e8cb8 (patch) | |
tree | ebe82c0953a7e33c4ed6566d87c33813753568ab /railties | |
parent | da773a24beab90236802a2ca39e5b124b1b5d456 (diff) | |
download | rails-d214e54e7aadd15bbf872c3deae24908258e8cb8.tar.gz rails-d214e54e7aadd15bbf872c3deae24908258e8cb8.tar.bz2 rails-d214e54e7aadd15bbf872c3deae24908258e8cb8.zip |
Fix a typo that was mysteriously entered in previous commit
Diffstat (limited to 'railties')
-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 303066b752..1b245b1fc7 100644 --- a/railties/guides/source/asset_pipeline.textile +++ b/railties/guides/source/asset_pipeline.textile @@ -19,7 +19,7 @@ Prior to Rails 3.1 these features were added through third-party Ruby libraries By having this as a core feature of Rails, all developers can benefit from the power of having their assets pre-processed, compressed and minified by one central library, Sprockets. This is part of Rails' "fast by default" strategy as outlined by DHH in his keynote at RailsConf 2011. -In Rails 3.1, the asset pipeline is enabled by default. It can be disabled in +config/application.rb+ by publicing this line inside the application class definition: +In Rails 3.1, the asset pipeline is enabled by default. It can be disabled in +config/application.rb+ by putting this line inside the application class definition: <ruby> config.assets.enabled = false |