fix habtm documentation to correct typo

Signed-off-by: Rizwan Reza <rizwanreza@gmail.com>
This commit is contained in:
Jeremy Roman
2009-12-30 16:49:32 -05:00
committed by Rizwan Reza
parent cbdb4aa287
commit ffb22bd2be

View File

@@ -1210,7 +1210,7 @@ module ActiveRecord
# * <tt>Developer#projects.empty?</tt>
# * <tt>Developer#projects.size</tt>
# * <tt>Developer#projects.find(id)</tt>
# * <tt>Developer#clients.exists?(...)</tt>
# * <tt>Developer#projects.exists?(...)</tt>
# * <tt>Developer#projects.build</tt> (similar to <tt>Project.new("project_id" => id)</tt>)
# * <tt>Developer#projects.create</tt> (similar to <tt>c = Project.new("project_id" => id); c.save; c</tt>)
# The declaration may include an options hash to specialize the behavior of the association.