Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kamalkhan committed Mar 15, 2018
1 parent 994d98d commit 6e73709
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 @@ -93,10 +93,10 @@ echo $storage->get('incr'); // 6
```php
echo $storage->get('decr); // null

$storage->increment('decr');
$storage->decerement('decr');
echo $storage->get('decr'); // -1

$storage->increment('decr', 5);
$storage->decerement('decr', 5);
echo $storage->get('decr'); // -6
```

Expand Down

0 comments on commit 6e73709

Please sign in to comment.