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

Missing @ [ci skip]

This commit is contained in:
Ryuta Kamizono 2015-02-08 20:23:46 +09:00
parent 1492e83e49
commit 2abde96002

View file

@ -147,7 +147,7 @@ module ActiveRecord
# # +type_cast_from_user+. Assumed to be in instance of +Money+ in # # +type_cast_from_user+. Assumed to be in instance of +Money+ in
# # this case. # # this case.
# def type_cast_for_database(value) # def type_cast_for_database(value)
# value_in_bitcoins = currency_converter.convert_to_bitcoins(value) # value_in_bitcoins = @currency_converter.convert_to_bitcoins(value)
# value_in_bitcoins.amount # value_in_bitcoins.amount
# end # end
# end # end