diff options
author | Caius Durling <dev@caius.name> | 2012-03-06 12:03:36 +0000 |
---|---|---|
committer | Caius Durling <dev@caius.name> | 2012-03-06 12:03:36 +0000 |
commit | 45b4ebc7df1b0e25a38862d61566d8b380cb3798 (patch) | |
tree | 64495e84fddca1208a10fb057a1933d0a57af325 /railties/lib/rails | |
parent | 4bfc8b1e2ceaa0f87fa9642b535f4dd8a2f7fd6f (diff) | |
download | rails-45b4ebc7df1b0e25a38862d61566d8b380cb3798.tar.gz rails-45b4ebc7df1b0e25a38862d61566d8b380cb3798.tar.bz2 rails-45b4ebc7df1b0e25a38862d61566d8b380cb3798.zip |
Fix typo in isolated engine docs
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 # |