Skip to content

Commit

Permalink
Fix font styling on associations.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
smartinez87 committed May 26, 2011
1 parent 52f0437 commit dfba8f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions activerecord/lib/active_record/associations.rb
Expand Up @@ -458,12 +458,12 @@ def association_instance_set(name, association)
# end
#
# Some extensions can only be made to work with knowledge of the association's internals.
# Extensions can access relevant state using the following methods (where 'items' is the
# Extensions can access relevant state using the following methods (where +items+ is the
# name of the association):
#
# * +record.association(:items).owner+ - Returns the object the association is part of.
# * +record.association(:items).reflection+ - Returns the reflection object that describes the association.
# * +record.association(:items).target+ - Returns the associated object for +belongs_to+ and +has_one+, or
# * <tt>record.association(:items).owner</tt> - Returns the object the association is part of.
# * <tt>record.association(:items).reflection</tt> - Returns the reflection object that describes the association.
# * <tt>record.association(:items).target</tt> - Returns the associated object for +belongs_to+ and +has_one+, or
# the collection of associated objects for +has_many+ and +has_and_belongs_to_many+.
#
# === Association Join Models
Expand Down

0 comments on commit dfba8f5

Please sign in to comment.