diff options
author | Mikhail Dieterle <MikDiet@gmail.com> | 2015-04-10 22:35:46 +0300 |
---|---|---|
committer | Mikhail Dieterle <MikDiet@gmail.com> | 2015-04-10 22:35:46 +0300 |
commit | 746695d6c8426ecc48d4a7099b6330ef3fda16ea (patch) | |
tree | d7546c0446949ac8e903c5d4b0096a0c7f112e0d /guides | |
parent | fdcc71d0146575a6387bb5cc4380eda1072dd435 (diff) | |
download | rails-746695d6c8426ecc48d4a7099b6330ef3fda16ea.tar.gz rails-746695d6c8426ecc48d4a7099b6330ef3fda16ea.tar.bz2 rails-746695d6c8426ecc48d4a7099b6330ef3fda16ea.zip |
[ci skip] fix helper name
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/engines.md | 2 |
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: |