From fd3d95912fbf150cdaeb4ef3bb30f5c7c1138caa Mon Sep 17 00:00:00 2001 From: Yusuke Sangenya Date: Tue, 18 Jul 2023 12:44:35 +0900 Subject: [PATCH] Fix typo in README.md --- 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 */ });