diff --git a/lib/stripe/stripe_object.rb b/lib/stripe/stripe_object.rb index c429879e..ff282306 100644 --- a/lib/stripe/stripe_object.rb +++ b/lib/stripe/stripe_object.rb @@ -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