1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

'nil' => nil

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

View file

@ -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