aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-03-24 14:56:31 +0000
committerRick Olson <technoweenie@gmail.com>2006-03-24 14:56:31 +0000
commitef1297d896f6ee12b8d6d31d44d2a45f61f1a667 (patch)
tree8e9c62c80494a92ecc29783b513b3563e11d3c71 /activerecord/lib
parent38bae0a9695aeaf200b5d62cee2dba2928c847d9 (diff)
downloadrails-ef1297d896f6ee12b8d6d31d44d2a45f61f1a667.tar.gz
rails-ef1297d896f6ee12b8d6d31d44d2a45f61f1a667.tar.bz2
rails-ef1297d896f6ee12b8d6d31d44d2a45f61f1a667.zip
remove some documentation cruft on has_many
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4023 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-xactiverecord/lib/active_record/associations.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index 3a8c484a9b..ca5ae33b5a 100755
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -484,9 +484,6 @@ module ActiveRecord
# 'FROM people p, post_subscriptions ps ' +
# 'WHERE ps.post_id = #{id} AND ps.person_id = p.id ' +
# 'ORDER BY p.first_name'
- #
- # Specifying the :through option
- #
def has_many(association_id, options = {}, &extension)
reflection = create_has_many_reflection(association_id, options, &extension)