diff options
author | Jeremy Roman <jeremy@jeremyroman.com> | 2009-12-30 16:49:32 -0500 |
---|---|---|
committer | Rizwan Reza <rizwanreza@gmail.com> | 2010-03-26 13:35:56 +0430 |
commit | ffb22bd2be62e6a9a2eb11966e9bc07fee8722af (patch) | |
tree | 9d1d241926e0094fa48353e650845cddc1062d93 /activerecord | |
parent | cbdb4aa28765cf540a1a66e647fb7160ebe7a4a8 (diff) | |
download | rails-ffb22bd2be62e6a9a2eb11966e9bc07fee8722af.tar.gz rails-ffb22bd2be62e6a9a2eb11966e9bc07fee8722af.tar.bz2 rails-ffb22bd2be62e6a9a2eb11966e9bc07fee8722af.zip |
fix habtm documentation to correct typo
Signed-off-by: Rizwan Reza <rizwanreza@gmail.com>
Diffstat (limited to 'activerecord')
-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 a5179033f2..c47e0c37b8 100755 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -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. |