diff options
author | Martin Harrigan <martinharrigan@gmail.com> | 2013-11-23 11:26:17 +0000 |
---|---|---|
committer | Martin Harrigan <martinharrigan@gmail.com> | 2013-11-23 11:26:17 +0000 |
commit | 08c72946c529f4913131d6285b35d4fc3d41673c (patch) | |
tree | 256d4c09ad1112f3f6b698a89a265075a593f5ca /guides | |
parent | 8461b6eda4fa685eb9ca0668eb541c7b20705e0c (diff) | |
download | rails-08c72946c529f4913131d6285b35d4fc3d41673c.tar.gz rails-08c72946c529f4913131d6285b35d4fc3d41673c.tar.bz2 rails-08c72946c529f4913131d6285b35d4fc3d41673c.zip |
Helper should be a module in Rails guides [ci skip]
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 af48768fe9..2266b1fd7f 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -253,7 +253,7 @@ The helper inside `app/helpers/blorgh/posts_helper.rb` is also namespaced: ```ruby module Blorgh - class PostsHelper + module PostsHelper ... end end |