aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_postgresql.md
diff options
context:
space:
mode:
authorGaurav Sharma <gaurav2728@gmail.com>2015-05-20 17:28:02 +0530
committerGaurav Sharma <gaurav2728@gmail.com>2015-05-20 17:41:17 +0530
commit3e238b6b0f1aec34af9740c1f783b079005f2172 (patch)
tree1f373f226ca401809504212f4273ec097a068be7 /guides/source/active_record_postgresql.md
parent0f9ab4f34804d54e7aca0552324a92e8999f6ab4 (diff)
downloadrails-3e238b6b0f1aec34af9740c1f783b079005f2172.tar.gz
rails-3e238b6b0f1aec34af9740c1f783b079005f2172.tar.bz2
rails-3e238b6b0f1aec34af9740c1f783b079005f2172.zip
[ci skip] update ruby doc links; for rails next version ruby 2.2+ will be supported only
Diffstat (limited to 'guides/source/active_record_postgresql.md')
-rw-r--r--guides/source/active_record_postgresql.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_postgresql.md b/guides/source/active_record_postgresql.md
index b95f249dcb..dcc523eb0f 100644
--- a/guides/source/active_record_postgresql.md
+++ b/guides/source/active_record_postgresql.md
@@ -141,7 +141,7 @@ Event.where("payload->>'kind' = ?", "user_renamed")
* [type definition](http://www.postgresql.org/docs/current/static/rangetypes.html)
* [functions and operators](http://www.postgresql.org/docs/current/static/functions-range.html)
-This type is mapped to Ruby [`Range`](http://www.ruby-doc.org/core-2.1.1/Range.html) objects.
+This type is mapped to Ruby [`Range`](http://www.ruby-doc.org/core-2.2.2/Range.html) objects.
```ruby
# db/migrate/20130923065404_create_events.rb
@@ -317,7 +317,7 @@ user.save!
* [type definition](http://www.postgresql.org/docs/current/static/datatype-net-types.html)
The types `inet` and `cidr` are mapped to Ruby
-[`IPAddr`](http://www.ruby-doc.org/stdlib-2.1.1/libdoc/ipaddr/rdoc/IPAddr.html)
+[`IPAddr`](http://www.ruby-doc.org/stdlib-2.2.2/libdoc/ipaddr/rdoc/IPAddr.html)
objects. The `macaddr` type is mapped to normal text.
```ruby