style: fix readme

This commit is contained in:
mehanizm
2020-04-14 14:43:58 +03:00
parent d0f39448e1
commit 8fba273a77

View File

@@ -2,6 +2,7 @@ Golang Airtable API
================ ================
[![GoDoc](https://godoc.org/github.com/mehanizm/airtable?status.svg)](https://pkg.go.dev/github.com/mehanizm/airtable) [![GoDoc](https://godoc.org/github.com/mehanizm/airtable?status.svg)](https://pkg.go.dev/github.com/mehanizm/airtable)
![Go](https://github.com/mehanizm/airtable/workflows/Go/badge.svg)
<a href='https://github.com/jpoles1/gopherbadger' target='_blank'>![gopherbadger-tag-do-not-edit](https://img.shields.io/badge/Go%20Coverage-92%25-brightgreen.svg?longCache=true&style=flat)</a> <a href='https://github.com/jpoles1/gopherbadger' target='_blank'>![gopherbadger-tag-do-not-edit](https://img.shields.io/badge/Go%20Coverage-92%25-brightgreen.svg?longCache=true&style=flat)</a>
<a href='https://goreportcard.com/report/github.com/mehanizm/airtable' target='_blank'>![goreportcard](https://goreportcard.com/badge/github.com/mehanizm/airtable)</a> <a href='https://goreportcard.com/report/github.com/mehanizm/airtable' target='_blank'>![goreportcard](https://goreportcard.com/badge/github.com/mehanizm/airtable)</a>
@@ -79,7 +80,7 @@ recordsToSend := &airtable.Records{
}, },
}, },
} }
recievedRecords, err := table.AddRecords(recordsToSend) receivedRecords, err := table.AddRecords(recordsToSend)
if err != nil { if err != nil {
// Handle error // Handle error
} }