From 9768da7a70f08c7f37adcc15ac6584e77998048d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Ekstr=C3=B6m?= Date: Thu, 4 Dec 2014 17:05:10 +0100 Subject: [PATCH] Missing a word --- lib/active_model/serializer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/active_model/serializer.rb b/lib/active_model/serializer.rb index edf4e0242..f2a34c350 100644 --- a/lib/active_model/serializer.rb +++ b/lib/active_model/serializer.rb @@ -36,7 +36,7 @@ def self.attribute(attr, options = {}) end unless method_defined?(key) end - # Defines an association in the object should be rendered. + # Defines an association in the object that should be rendered. # # The serializer object should implement the association name # as a method which should return an array when invoked. If a method @@ -46,7 +46,7 @@ def self.has_many(*attrs) associate(:has_many, attrs) end - # Defines an association in the object should be rendered. + # Defines an association in the object that should be rendered. # # The serializer object should implement the association name # as a method which should return an object when invoked. If a method