From ffab40f42a27ccc8cf1514940bd54d3a668c3437 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Fri, 27 Nov 2015 00:15:10 +1100 Subject: [PATCH] rails-models: fix links --- rails-models.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rails-models.md b/rails-models.md index f00e56b6d..c1aa09e55 100644 --- a/rails-models.md +++ b/rails-models.md @@ -97,7 +97,7 @@ item.attributes = { name: 'John' } # Merges attributes in. Doesn't save. item.assign_attributes name: 'John' # Same as above ``` -### [Dirty](http://devdocs.io/rails/activerecord/dirty) +### [Dirty](http://devdocs.io/rails/activemodel/dirty) ```rb item.changed?