From 38ea3f54c3ad8eab30b8f60176def15edd14589f Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Mon, 2 Oct 2023 12:04:52 +0200 Subject: [PATCH] Fix typo in README (#213) PUT requests should use `putRequest` method. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c183c31..2d834b0e 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,7 @@ client.getRequest(apiPath, params); client.postRequest(apiPath, params); // PUT requests -client.postRequest(apiPath, params); +client.putRequest(apiPath, params); ``` ---