Whitespace fixes

This commit is contained in:
Yehuda Katz 2011-12-07 11:56:31 -08:00
parent 0f4b61fbcf
commit 5054d2a449

View File

@ -48,7 +48,7 @@ module ActiveModel
# class PostSerializer < ActiveModel::Serializer # class PostSerializer < ActiveModel::Serializer
# attributes :title, :body # attributes :title, :body
# has_many :comments # has_many :comments
# #
# private # private
# #
# def attributes # def attributes
@ -56,7 +56,7 @@ module ActiveModel
# hash.merge!(:email => post.email) if author? # hash.merge!(:email => post.email) if author?
# hash # hash
# end # end
# #
# def author? # def author?
# post.author == scope # post.author == scope
# end # end