Skip to content

Commit

Permalink
[ci skip] Changed options to +options+ for rdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkadwill committed Aug 9, 2014
1 parent ebcbcf9 commit b7176ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions activerecord/lib/active_record/associations.rb
Expand Up @@ -1131,7 +1131,7 @@ module ClassMethods
# * <tt>Firm#clients.build</tt> (similar to <tt>Client.new("firm_id" => id)</tt>)
# * <tt>Firm#clients.create</tt> (similar to <tt>c = Client.new("firm_id" => id); c.save; c</tt>)
# * <tt>Firm#clients.create!</tt> (similar to <tt>c = Client.new("firm_id" => id); c.save!</tt>)
# The declaration can also include an options hash to specialize the behavior of the association.
# The declaration can also include an +options+ hash to specialize the behavior of the association.
#
# === Options
# [:class_name]
Expand Down Expand Up @@ -1259,7 +1259,7 @@ def has_many(name, scope = nil, options = {}, &extension)
#
# === Options
#
# The declaration can also include an options hash to specialize the behavior of the association.
# The declaration can also include an +options+ hash to specialize the behavior of the association.
#
# Options are:
# [:class_name]
Expand Down Expand Up @@ -1364,7 +1364,7 @@ def has_one(name, scope = nil, options = {})
# * <tt>Post#build_author</tt> (similar to <tt>post.author = Author.new</tt>)
# * <tt>Post#create_author</tt> (similar to <tt>post.author = Author.new; post.author.save; post.author</tt>)
# * <tt>Post#create_author!</tt> (similar to <tt>post.author = Author.new; post.author.save!; post.author</tt>)
# The declaration can also include an options hash to specialize the behavior of the association.
# The declaration can also include an +options+ hash to specialize the behavior of the association.
#
# === Options
#
Expand Down Expand Up @@ -1541,7 +1541,7 @@ def belongs_to(name, scope = nil, options = {})
# * <tt>Developer#projects.exists?(...)</tt>
# * <tt>Developer#projects.build</tt> (similar to <tt>Project.new("developer_id" => id)</tt>)
# * <tt>Developer#projects.create</tt> (similar to <tt>c = Project.new("developer_id" => id); c.save; c</tt>)
# The declaration may include an options hash to specialize the behavior of the association.
# The declaration may include an +options+ hash to specialize the behavior of the association.
#
# === Options
#
Expand Down

0 comments on commit b7176ab

Please sign in to comment.