From 8135b2eaa8f926d608743213d7f986fe1ada9267 Mon Sep 17 00:00:00 2001 From: Le Michel <95184938+Ptitet@users.noreply.github.com> Date: Tue, 9 Jul 2024 17:23:41 +0200 Subject: [PATCH] Fixed typo in README.md Removed weird leading semi in js code block --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1727b81..56c6a221 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Make a request to any Notion API endpoint. > See the complete list of endpoints in the [API reference](https://developers.notion.com/reference). ```js -;(async () => { +(async () => { const listUsersResponse = await notion.users.list({}) })() ```