aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2015-05-20 10:34:05 +0200
committerArun Agrawal <arunagw@gmail.com>2015-05-20 10:34:05 +0200
commite00d63e2c6001cc1e8a1717da126428a18db9e78 (patch)
treebd38866de9122419c24c82a8941d88d952483469 /activerecord
parentedb0eaab9fdf9a549c3f93ccb34e1ead4dcb7e4f (diff)
parentac20dd73ac5a3ed4a266c96157d0dbcadaf811fd (diff)
downloadrails-e00d63e2c6001cc1e8a1717da126428a18db9e78.tar.gz
rails-e00d63e2c6001cc1e8a1717da126428a18db9e78.tar.bz2
rails-e00d63e2c6001cc1e8a1717da126428a18db9e78.zip
Merge pull request #20217 from amitsuroliya/fix_netaddr_link
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