aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-10-14 03:09:20 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-10-14 03:09:20 +0000
commita9eaa25a66eabb020eb9ce6c6de32681eacd9760 (patch)
treed00f355086d65b7cf67656c70643730c42871d23 /railties
parent01cfda7cf280b5050b4431790702d63a956190c2 (diff)
downloadrails-a9eaa25a66eabb020eb9ce6c6de32681eacd9760.tar.gz
rails-a9eaa25a66eabb020eb9ce6c6de32681eacd9760.tar.bz2
rails-a9eaa25a66eabb020eb9ce6c6de32681eacd9760.zip
Fix environment.rb typos. Closes #9859 [fxn, mikong]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7871 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r--railties/environments/environment.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb
index 7c6c32501c..55a167c75f 100644
--- a/railties/environments/environment.rb
+++ b/railties/environments/environment.rb
@@ -16,7 +16,7 @@ Rails::Initializer.run do |config|
# Skip frameworks you're not going to use (only works if using vendor/rails)
# config.frameworks -= [ :active_resource, :action_mailer ]
- # Only load the plugins named here, in the order given. By default all plugins in vendor/plugins are loaded, in alphabetical order
+ # Only load the plugins named here, in the order given. By default, all plugins in vendor/plugins are loaded in alphabetical order.
# :all can be used as a placeholder for all plugins not explicitly named.
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
@@ -53,5 +53,5 @@ Rails::Initializer.run do |config|
# See Rails::Configuration for more options
# Application configuration should go into files in config/initializers
- # -- all .rb files in that directory is automatically loaded
+ # -- all .rb files in that directory are automatically loaded
end