From 6d28b33d6e53c1fb70d4e4f2f842ffc62bac4cbf Mon Sep 17 00:00:00 2001 From: Daniel Keeble Date: Mon, 13 Jul 2015 10:46:09 +0100 Subject: [PATCH] Upside-down --- billing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);