diff options
author | Jack Danger Canty <git@6brand.com> | 2008-05-06 23:42:06 -0700 |
---|---|---|
committer | Jack Danger Canty <git@6brand.com> | 2008-05-06 23:42:06 -0700 |
commit | 080d5b7acb696190e0c2d1cba46951371f27bc26 (patch) | |
tree | f8e6db8baba6cd61fe1371eb3d86b62050bdc305 /activerecord | |
parent | b243de0db3c2605121e055079854af5090d06374 (diff) | |
download | rails-080d5b7acb696190e0c2d1cba46951371f27bc26.tar.gz rails-080d5b7acb696190e0c2d1cba46951371f27bc26.tar.bz2 rails-080d5b7acb696190e0c2d1cba46951371f27bc26.zip |
Fixing typo in association class name
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/reflection.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/reflection.rb b/activerecord/lib/active_record/reflection.rb index 50cdcd3e2e..8614ef8751 100644 --- a/activerecord/lib/active_record/reflection.rb +++ b/activerecord/lib/active_record/reflection.rb @@ -154,7 +154,7 @@ module ActiveRecord end # Returns the AssociationReflection object specified in the <tt>:through</tt> option - # of a HasMantThrough or HasOneThrough association. Example: + # of a HasManyThrough or HasOneThrough association. Example: # # class Post < ActiveRecord::Base # has_many :taggings |