diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-03-09 00:07:59 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-03-09 00:07:59 +0530 |
commit | 188d1d27876018c492280059b3d721be9afcc231 (patch) | |
tree | 20037458a5814681e78858c93eef14cc893ffe44 /railties/lib/rails | |
parent | 085cb3b9af9d74fa9a3b72181f674f0b7c3dbf01 (diff) | |
parent | 97e7d43146b6edca19891d8c7ed6b4d93e7dad00 (diff) | |
download | rails-188d1d27876018c492280059b3d721be9afcc231.tar.gz rails-188d1d27876018c492280059b3d721be9afcc231.tar.bz2 rails-188d1d27876018c492280059b3d721be9afcc231.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/lib/rails')
-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 af2bde5a6e..9629ac55c2 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -245,7 +245,7 @@ module Rails # # Additionally, an isolated engine will set its name according to namespace, so # MyEngine::Engine.engine_name will be "my_engine". It will also set MyEngine.table_name_prefix - # to "my_engine_", changing the MyEngine::Article model to use the my_engine_article table. + # to "my_engine_", changing the MyEngine::Article model to use the my_engine_articles table. # # == Using Engine's routes outside Engine # |