aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorCaius Durling <dev@caius.name>2012-03-06 12:03:36 +0000
committerCaius Durling <dev@caius.name>2012-03-06 12:03:36 +0000
commit45b4ebc7df1b0e25a38862d61566d8b380cb3798 (patch)
tree64495e84fddca1208a10fb057a1933d0a57af325 /railties/lib
parent4bfc8b1e2ceaa0f87fa9642b535f4dd8a2f7fd6f (diff)
downloadrails-45b4ebc7df1b0e25a38862d61566d8b380cb3798.tar.gz
rails-45b4ebc7df1b0e25a38862d61566d8b380cb3798.tar.bz2
rails-45b4ebc7df1b0e25a38862d61566d8b380cb3798.zip
Fix typo in isolated engine docs
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/engine.rb2
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
#