Skip to content

Commit

Permalink
docs: Fix example (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
krns authored Oct 30, 2024
1 parent 7bd455b commit c0b4deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/tutorials/getting-started-with-reactor.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ defmodule MyApp.CreateStripeSubscriptionStep do

@impl true
def run(arguments, context, options) do
Stripe.Subscription.create(arguments.stripe_customer_id, items: [plan: arguments.stripe_plan_id])
Stripe.Subscription.create(arguments.customer_id, items: [plan: arguments.plan_id])
end

@impl true
Expand Down

0 comments on commit c0b4deb

Please sign in to comment.