diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-04-06 02:52:40 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-04-06 02:52:40 +0000 |
commit | 26e187516f3a57a432f59dfec3244d1fbc8c58de (patch) | |
tree | 32ccc9d9c012adb6c2c8b914ac6d78fb73b7d60e | |
parent | f2790d03905c275e8eff3927429bdb77f6c75d3a (diff) | |
download | rails-26e187516f3a57a432f59dfec3244d1fbc8c58de.tar.gz rails-26e187516f3a57a432f59dfec3244d1fbc8c58de.tar.bz2 rails-26e187516f3a57a432f59dfec3244d1fbc8c58de.zip |
Doc fix (closes #4609)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4174 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-x | activerecord/lib/active_record/associations.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index 8b6aac49ce..e97350d902 100755 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -635,7 +635,7 @@ module ActiveRecord # is used on the associate class (such as a Post class). You can also specify a custom counter cache column by given that # name instead of a true/false value to this option (e.g., <tt>:counter_cache => :my_custom_counter</tt>.) # * <tt>:include</tt> - specify second-order associations that should be eager loaded when this object is loaded. - # # <tt>:polymorphic</tt> - specify this association is a polymorphic association by passing true. + # * <tt>:polymorphic</tt> - specify this association is a polymorphic association by passing true. # # Option examples: # belongs_to :firm, :foreign_key => "client_of" |