docs: correct grammar and typos in the Nodejs doc (#2109)

* Fix grammar

* Correct grammar and typos
This commit is contained in:
Debert Jamie
2022-03-20 15:34:59 +07:00
committed by GitHub
parent 5c2ed9573c
commit 39f94c5c20
6 changed files with 8 additions and 8 deletions

View File

@@ -32,7 +32,7 @@ class Channel {
}
async send(options) {
return await client.helpers.sendMessage(this.id, options);
return await this.client.helpers.sendMessage(this.id, options);
}
}
```