Skip to content

Commit 3fb7c68

Browse files
committed
Few more fixes.
1 parent 6c7402a commit 3fb7c68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

billing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,14 @@ If you would like to make a "one off" charge against a subscribed customer's cre
9999

100100
The `charge` method accepts the amount you would like to charge in the **lowest denominator of the currency**. So, for example, the example above will charge 100 cents, or $1.00, against the user's credit card.
101101

102-
The `charge` method also accepts an array for its second argument, allowing you to pass any options you wish to the underlying Stripe charge creation:
102+
The `charge` method accepts an array as its second argument, allowing you to pass any options you wish to the underlying Stripe charge creation:
103103

104104
$user->charge(100, [
105105
'source' => $token,
106106
'receipt_email' => $user->email,
107107
]);
108108

109-
The charge method will return `false` if the charge fails. This typically indicates the charge was denied:
109+
The `charge` method will return `false` if the charge fails. This typically indicates the charge was denied:
110110

111111
if ( ! $user->charge(100))
112112
{

0 commit comments

Comments
 (0)