Skip to content

Commit

Permalink
Merge pull request #18 from exfriend/patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
zgabievi authored May 8, 2018
2 parents 12c1aa9 + 77cb754 commit 5e06fb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ Promocodes::create(1, 25, ['foo' => 'bar', 'baz' => 'qux']);

```php
Promocodes::redeem('ABC-DEF', function($promocode) {
echo $pomocode->data['foo'];
echo $promocode->data['foo'];
});

// bar
Expand All @@ -206,7 +206,7 @@ or

```php
User::redeemCode('ABC-DEF', function($promocode) {
echo $pomocode->data['foo'];
echo $promocode->data['foo'];
});

// bar
Expand Down

0 comments on commit 5e06fb9

Please sign in to comment.