diff options
author | manishval <manishval@hotmail.com> | 2013-01-29 14:58:52 -0400 |
---|---|---|
committer | manishval <manishval@hotmail.com> | 2013-01-29 14:58:52 -0400 |
commit | f409e0519f3532ddc8dff818546e7e3c02668b1d (patch) | |
tree | 635a1242d38a5a8325da0cba89d77f44f4a8be25 /guides | |
parent | b49bf823340775bb117c2b18e11e0dfa7ed6e475 (diff) | |
download | rails-f409e0519f3532ddc8dff818546e7e3c02668b1d.tar.gz rails-f409e0519f3532ddc8dff818546e7e3c02668b1d.tar.bz2 rails-f409e0519f3532ddc8dff818546e7e3c02668b1d.zip |
Typo in code
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/generators.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/generators.md b/guides/source/generators.md index 8b91dfc5a5..1a08eb420a 100644 --- a/guides/source/generators.md +++ b/guides/source/generators.md @@ -310,7 +310,7 @@ In Rails 3.0 and above, generators don't just look in the source root for templa ```erb module <%= class_name %>Helper - attr_reader :<%= plural_name %>, <%= plural_name.singularize %> + attr_reader :<%= plural_name %>, :<%= plural_name.singularize %> end ``` |