Skip to content

Commit 2f1fa58

Browse files
committed
Add missing ";" to billing.md
1 parent 6d231d9 commit 2f1fa58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

billing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ Sometimes subscriptions are affected by "quantity". For example, your applicatio
121121
$user->subscription()->increment();
122122

123123
// Add five to the subscription's current quantity...
124-
$user->subscription()->increment(5)
124+
$user->subscription()->increment(5);
125125

126126
$user->subscription->decrement();
127127

128128
// Subtract five to the subscription's current quantity...
129-
$user->subscription()->decrement(5)
129+
$user->subscription()->decrement(5);
130130

131131
<a name="cancelling-a-subscription"></a>
132132
## Cancelling A Subscription

0 commit comments

Comments
 (0)