style: fix typo

This commit is contained in:
mehanizm
2020-04-14 14:38:05 +03:00
parent 89528f70fb
commit d0f39448e1
2 changed files with 14 additions and 2 deletions

View File

@@ -20,6 +20,7 @@ Table of contents
- [Get record by ID](#get-record-by-id)
- [Update records](#update-records)
- [Delete record](#delete-record)
- [Bulk delete records](#bulk-delete-records)
- [Special thanks](#special-thanks)
@@ -138,6 +139,17 @@ if err != nil {
}
```
### Bulk delete records
To delete up to 10 records
```Go
records, err := table.DeleteRecords([]string{"recordID1", "recordsID2"})
if err != nil {
// Handle error
}
```
## Special thanks
Inspired by [Go Trello API](github.com/adlio/trello)