aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Harrigan <martinharrigan@gmail.com>2013-11-23 11:26:17 +0000
committerMartin Harrigan <martinharrigan@gmail.com>2013-11-23 11:26:17 +0000
commit08c72946c529f4913131d6285b35d4fc3d41673c (patch)
tree256d4c09ad1112f3f6b698a89a265075a593f5ca
parent8461b6eda4fa685eb9ca0668eb541c7b20705e0c (diff)
downloadrails-08c72946c529f4913131d6285b35d4fc3d41673c.tar.gz
rails-08c72946c529f4913131d6285b35d4fc3d41673c.tar.bz2
rails-08c72946c529f4913131d6285b35d4fc3d41673c.zip
Helper should be a module in Rails guides [ci skip]
-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 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