aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2013-04-08 21:55:23 -0400
committerNeeraj Singh <neerajdotname@gmail.com>2013-04-08 21:55:23 -0400
commit8b89b60e473537b76e064f6719792e14aa17173d (patch)
treed205577c82f8182613b0d8a40dcb66736e67df43 /activerecord
parent9b5e5c18437930889d0198e10982bb12557e5f8c (diff)
downloadrails-8b89b60e473537b76e064f6719792e14aa17173d.tar.gz
rails-8b89b60e473537b76e064f6719792e14aa17173d.tar.bz2
rails-8b89b60e473537b76e064f6719792e14aa17173d.zip
JoinPart is no longer an abstract class
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/associations/join_dependency/join_part.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/join_dependency/join_part.rb b/activerecord/lib/active_record/associations/join_dependency/join_part.rb
index 5604687b57..411a2ca7e4 100644
--- a/activerecord/lib/active_record/associations/join_dependency/join_part.rb
+++ b/activerecord/lib/active_record/associations/join_dependency/join_part.rb
@@ -1,7 +1,7 @@
module ActiveRecord
module Associations
class JoinDependency # :nodoc:
- # A JoinPart represents a part of a JoinDependency. It is an abstract class, inherited
+ # A JoinPart represents a part of a JoinDependency. It is inherited
# by JoinBase and JoinAssociation. A JoinBase represents the Active Record which
# everything else is being joined onto. A JoinAssociation represents an association which
# is joining to the base. A JoinAssociation may result in more than one actual join