1
0
mirror of https://github.com/dstotijn/go-notion.git synced 2025-06-06 23:36:14 +02:00

Fix typo in README

This commit is contained in:
David Stotijn 2021-05-17 21:07:39 +02:00
parent a9f18d3209
commit d419979b00

View File

@ -51,7 +51,7 @@ Then, use the methods defined on `Client` to make requests to the API. For
example: example:
```go ```go
page, err := client.FindPageByID("18d35eb5-91f1-4dcb-85b0-c340fd965015") page, err := client.FindPageByID(context.Background(), "18d35eb5-91f1-4dcb-85b0-c340fd965015")
if err != nil { if err != nil {
// Handle error... // Handle error...
} }