Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kitar committed Mar 22, 2021
1 parent d8ec1a7 commit e57c6ed
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 @@ -18,7 +18,7 @@ A DynamoDB based Eloquent model and Query builder for Laravel.
+ [save()](#save)
+ [update()](#update)
+ [delete()](#delete)
+ [increment() / decrement()](#increment-/-decrement)
+ [increment() / decrement()](#increment--decrement)
* [Advanced Queries](#advanced-queries)
- [Authentication with model](#authentication-with-model)
* [Register custom user provider](#register-custom-user-provider)
Expand Down Expand Up @@ -659,7 +659,7 @@ $response = DB::table('Reply')

### Atomic Counter

DynamoDB [supports Atomic Counter](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html#WorkingWithItems.AtomicCounters). When we call `increment()` and `decrement()` through Model or Query Builder, Atomic Counter will be used under the hood.
DynamoDB [supports Atomic Counter](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html#WorkingWithItems.AtomicCounters). When we call `increment()` and `decrement()` [through Model](#increment--decrement) or Query Builder, Atomic Counter will be used under the hood.

```php
DB::('Thread')->key([
Expand Down

0 comments on commit e57c6ed

Please sign in to comment.