aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-07-16 05:02:44 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-07-16 05:02:44 -0700
commit4a0f6e64d6004b520576e3fae281c9412a61cd8d (patch)
tree1f0c6ce4eaff48911fa6cd72b13f4470eb85d878
parenta80e1e437e74409d8b47b0c3b0cc0bc9ba78c190 (diff)
parent9c243b4bae7990a78b1e5d48815343c0aea76ed1 (diff)
downloadrails-4a0f6e64d6004b520576e3fae281c9412a61cd8d.tar.gz
rails-4a0f6e64d6004b520576e3fae281c9412a61cd8d.tar.bz2
rails-4a0f6e64d6004b520576e3fae281c9412a61cd8d.zip
Merge pull request #7066 from wkang/master
Fix activerecord model to_ary method comment 'see also' link
-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