diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-08-23 06:21:10 -0700 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-08-23 06:21:10 -0700 |
commit | bdb2d5f3373836388b0d7e9255ab82687e5c3f06 (patch) | |
tree | b940b07f7c8509afc2c08b674f2952c036cfa088 | |
parent | 5877729379f5892d0dccbee855b2c4f3e199b62f (diff) | |
parent | d1f33e09635af7bca1399de0533091fa7b47a49f (diff) | |
download | rails-bdb2d5f3373836388b0d7e9255ab82687e5c3f06.tar.gz rails-bdb2d5f3373836388b0d7e9255ab82687e5c3f06.tar.bz2 rails-bdb2d5f3373836388b0d7e9255ab82687e5c3f06.zip |
Merge pull request #11996 from semaperepelitsa/master
Docs: fix typo in file path, should include extension. [ci skip]
-rw-r--r-- | railties/lib/rails/engine.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb index 8000fc3b1e..f25f629aa5 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -102,7 +102,7 @@ module Rails # paths["config"] # => ["config"] # paths["config/initializers"] # => ["config/initializers"] # paths["config/locales"] # => ["config/locales"] - # paths["config/routes"] # => ["config/routes.rb"] + # paths["config/routes.rb"] # => ["config/routes.rb"] # end # # The <tt>Application</tt> class adds a couple more paths to this set. And as in your |