diff --git a/README.md b/README.md index 3bdbaa0..767b21b 100644 --- a/README.md +++ b/README.md @@ -101,10 +101,10 @@ client.commands.add(PingCommand) client.connect('super secret token comes here', Intents.All) ``` -Or with Decorator! +Or with Decorators! ```ts import { - CommandClient, + Client, event, Intents, command, @@ -132,10 +132,9 @@ class MyClient extends CommandClient { // Connect to gateway // Replace with your bot's token and intents (Intents.All, Intents.None, Intents.Presence, Intents.GuildMembers) -client.connect('super secret token comes here', Intents.All) +new MyClient().connect('super secret token comes here', Intents.All) ``` - ## Docs Documentation is available for `main` (branch) and `stable` (release).