refactor: fix typos (#6852)

This commit is contained in:
Almeida
2021-10-24 20:34:37 +01:00
committed by GitHub
parent c3948f8253
commit 672baa49e6
5 changed files with 6 additions and 6 deletions

View File

@@ -235,7 +235,7 @@ class User extends Base {
*/
async deleteDM() {
const { dmChannel } = this;
if (!dmChannel) throw new Error('USER_NO_DMCHANNEL');
if (!dmChannel) throw new Error('USER_NO_DM_CHANNEL');
await this.client.api.channels(dmChannel.id).delete();
this.client.channels._remove(dmChannel.id);
return dmChannel;

View File

@@ -206,7 +206,7 @@ class Collector extends EventEmitter {
/**
* Resets the collector's timeout and idle timer.
* @param {CollectorResetTimerOptions} [options] Options for reseting
* @param {CollectorResetTimerOptions} [options] Options for resetting
*/
resetTimer({ time, idle } = {}) {
if (this._timeout) {