aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorKang Wen <ysorigin@gmail.com>2012-07-16 14:53:37 +0800
committerKang Wen <ysorigin@gmail.com>2012-07-16 14:53:37 +0800
commit9c243b4bae7990a78b1e5d48815343c0aea76ed1 (patch)
tree1f0c6ce4eaff48911fa6cd72b13f4470eb85d878 /activerecord
parenta80e1e437e74409d8b47b0c3b0cc0bc9ba78c190 (diff)
downloadrails-9c243b4bae7990a78b1e5d48815343c0aea76ed1.tar.gz
rails-9c243b4bae7990a78b1e5d48815343c0aea76ed1.tar.bz2
rails-9c243b4bae7990a78b1e5d48815343c0aea76ed1.zip
Fix activerecord model to_ary method comment 'see also' link
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/core.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb
index 90f156456e..803d68187c 100644
--- a/activerecord/lib/active_record/core.rb
+++ b/activerecord/lib/active_record/core.rb
@@ -380,7 +380,7 @@ module ActiveRecord
#
# So we can avoid the method_missing hit by explicitly defining #to_ary as nil here.
#
- # See also http://tenderlovemaking.com/2011/06/28/til-its-ok-to-return-nil-from-to_ary/
+ # See also http://tenderlovemaking.com/2011/06/28/til-its-ok-to-return-nil-from-to_ary.html
def to_ary # :nodoc:
nil
end