Minor fixes to Rubydoc of #update_attributes

This commit is contained in:
Brandur 2016-06-09 09:19:15 -07:00
parent 6920d9db68
commit 6695340d50

View File

@ -72,12 +72,13 @@ module Stripe
#
# * +values+ - Hash of values to use to update the current attributes of
# the object.
# * +:opts+ Options for StripeObject like an API key.
# * +opts+ - Options for +StripeObject+ like an API key that will be reused
# on subsequent API calls.
#
# ==== Options
#
# * +:dirty+ Whether values should be initiated as "dirty" (unsaved) and
# which applies only to new StripeObjects being ininiated under this
# * +:dirty+ - Whether values should be initiated as "dirty" (unsaved) and
# which applies only to new StripeObjects being initiated under this
# StripeObject. Defaults to true.
def update_attributes(values, opts = {}, method_options = {})
# Default to true. TODO: Convert to optional arguments after we're off