From bdcc0ba64f5c1216bbf4e52c737115849546d7cf Mon Sep 17 00:00:00 2001 From: Yusuke Sangenya Date: Tue, 18 Jul 2023 17:22:14 +0900 Subject: [PATCH] docs: Fix typo in README.md (#842) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f2f0bf4..76152026 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ managers by the type of object they interact with. For example: ```js -// Get the user opject for the current user +// Get the user object for the current user client.users.get(client.CURRENT_USER_ID) .then(currentUser => { /* ... */ }) .catch(error => { /* handle any errors */ });