From d419979b00d171c68743f094fc05db26ebd8300a Mon Sep 17 00:00:00 2001 From: David Stotijn Date: Mon, 17 May 2021 21:07:39 +0200 Subject: [PATCH] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a90ffc2..9ddbb7d 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Then, use the methods defined on `Client` to make requests to the API. For example: ```go -page, err := client.FindPageByID("18d35eb5-91f1-4dcb-85b0-c340fd965015") +page, err := client.FindPageByID(context.Background(), "18d35eb5-91f1-4dcb-85b0-c340fd965015") if err != nil { // Handle error... }