diff --git a/billing.md b/billing.md index 96c91009241..ce7d7f17978 100644 --- a/billing.md +++ b/billing.md @@ -277,7 +277,7 @@ If you have additional Stripe webhook events you would like to handle, simply ex ## Single Charges -If you would like to make a "one off" charge against a subscribed customer's credit card, you may use the `charge` method on a billable model instance. The `charge` method accepts the amount you would like to charge in the **lowest denominator of the currency used by your application**. So, for example, the example above will charge 100 cents, or $1.00, against the user's credit card: +If you would like to make a "one off" charge against a subscribed customer's credit card, you may use the `charge` method on a billable model instance. The `charge` method accepts the amount you would like to charge in the **lowest denominator of the currency used by your application**. So, for example, the example below will charge 100 cents, or $1.00, against the user's credit card: $user->charge(100);