diff options
author | Xavier Noria <fxn@hashref.com> | 2008-05-07 02:25:45 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2008-05-07 02:25:45 +0200 |
commit | 963d7caeeec0288803e83557cc890047e35ea801 (patch) | |
tree | a54b6e2791771178c647fcf364ee01f7de3d4eb2 /railties | |
parent | f168db4cc13e40be28c425a34bd97470c398f1c9 (diff) | |
download | rails-963d7caeeec0288803e83557cc890047e35ea801.tar.gz rails-963d7caeeec0288803e83557cc890047e35ea801.tar.bz2 rails-963d7caeeec0288803e83557cc890047e35ea801.zip |
fixed a misplaced closing tag
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/initializer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb index 0ef0797e27..dfd43042be 100644 --- a/railties/lib/initializer.rb +++ b/railties/lib/initializer.rb @@ -678,7 +678,7 @@ module Rails YAML::load(ERB.new(IO.read(database_configuration_file)).result) end - # The path to the current environment's file (<tt>development</tt>.rb, etc.). By + # The path to the current environment's file (<tt>development.rb</tt>, etc.). By # default the file is at <tt>config/environments/#{environment}.rb</tt>. def environment_path "#{root_path}/config/environments/#{environment}.rb" |