aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Dieterle <MikDiet@gmail.com>2015-04-10 22:35:46 +0300
committerMikhail Dieterle <MikDiet@gmail.com>2015-04-10 22:35:46 +0300
commit746695d6c8426ecc48d4a7099b6330ef3fda16ea (patch)
treed7546c0446949ac8e903c5d4b0096a0c7f112e0d
parentfdcc71d0146575a6387bb5cc4380eda1072dd435 (diff)
downloadrails-746695d6c8426ecc48d4a7099b6330ef3fda16ea.tar.gz
rails-746695d6c8426ecc48d4a7099b6330ef3fda16ea.tar.bz2
rails-746695d6c8426ecc48d4a7099b6330ef3fda16ea.zip
[ci skip] fix helper name
-rw-r--r--guides/source/engines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index 84017d5e13..7b20b48c81 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -368,7 +368,7 @@ called `Blorgh::ArticlesController` (at
`app/controllers/blorgh/articles_controller.rb`) and its related views at
`app/views/blorgh/articles`. This generator also generates a test for the
controller (`test/controllers/blorgh/articles_controller_test.rb`) and a helper
-(`app/helpers/blorgh/articles_controller.rb`).
+(`app/helpers/blorgh/articles_helper.rb`).
Everything this generator has created is neatly namespaced. The controller's
class is defined within the `Blorgh` module: