'nil' => nil

This commit is contained in:
Akira Matsuda 2010-12-17 14:37:22 +09:00
parent e00afadfdd
commit a3fbbb626f

@ -15,7 +15,7 @@ module ActiveModel
# attr_accessor :name
#
# def attributes
# @attributes ||= {'name' => 'nil'}
# @attributes ||= {'name' => nil}
# end
#
# end
@ -45,7 +45,7 @@ module ActiveModel
# attr_accessor :name
#
# def attributes
# @attributes ||= {'name' => 'nil'}
# @attributes ||= {'name' => nil}
# end
#
# end