diff options
author | mariozig <mariozig@gmail.com> | 2013-06-25 15:35:03 -0700 |
---|---|---|
committer | mariozig <mariozig@gmail.com> | 2013-06-25 15:35:03 -0700 |
commit | bf044a9bbe222b45cfa58e65651749ec70f2793b (patch) | |
tree | cfb2e0f795a6af789b6b67bee058dbfa94db1b8e /guides | |
parent | f02d4ddc99ad70d1bd50ff70d37aed5f9cf49398 (diff) | |
download | rails-bf044a9bbe222b45cfa58e65651749ec70f2793b.tar.gz rails-bf044a9bbe222b45cfa58e65651749ec70f2793b.tar.bz2 rails-bf044a9bbe222b45cfa58e65651749ec70f2793b.zip |
Fix typo in docs. HABTM associations should use a pluralized name
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_view_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index dea1ddef71..187c910e37 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -1090,7 +1090,7 @@ Example object structure for use with this method: ```ruby class Post < ActiveRecord::Base - has_and_belongs_to_many :author + has_and_belongs_to_many :authors end class Author < ActiveRecord::Base |