aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authoramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-05-20 13:50:34 +0530
committeramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-05-20 14:01:00 +0530
commitac20dd73ac5a3ed4a266c96157d0dbcadaf811fd (patch)
treebe06150c271e6aa2fbfdb64d84614db3aee88e20 /activerecord
parent07f1a503ace4b728b6e295af3fc69c1dc1ed18cc (diff)
downloadrails-ac20dd73ac5a3ed4a266c96157d0dbcadaf811fd.tar.gz
rails-ac20dd73ac5a3ed4a266c96157d0dbcadaf811fd.tar.bz2
rails-ac20dd73ac5a3ed4a266c96157d0dbcadaf811fd.zip
Fix NetAddr link [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/aggregations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb
index 3d497a30fb..f7b50cd25a 100644
--- a/activerecord/lib/active_record/aggregations.rb
+++ b/activerecord/lib/active_record/aggregations.rb
@@ -142,7 +142,7 @@ module ActiveRecord
# converted to an instance of value class if necessary.
#
# For example, the NetworkResource model has +network_address+ and +cidr_range+ attributes that should be
- # aggregated using the NetAddr::CIDR value class (http://www.ruby-doc.org/gems/docs/n/netaddr-1.5.0/NetAddr/CIDR.html).
+ # aggregated using the NetAddr::CIDR value class (http://www.rubydoc.info/gems/netaddr/1.5.0/NetAddr/CIDR).
# The constructor for the value class is called +create+ and it expects a CIDR address string as a parameter.
# New values can be assigned to the value object using either another NetAddr::CIDR object, a string
# or an array. The <tt>:constructor</tt> and <tt>:converter</tt> options can be used to meet