Skip to content

Commit

Permalink
refactor: fix typos (#6852)
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx committed Oct 24, 2021
1 parent c3948f8 commit 672baa4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/errors/Messages.js
Expand Up @@ -61,7 +61,7 @@ const Messages = {
FILE_NOT_FOUND: file => `File could not be found: ${file}`,

USER_BANNER_NOT_FETCHED: "You must fetch this user's banner before trying to generate its URL!",
USER_NO_DMCHANNEL: 'No DM Channel exists!',
USER_NO_DM_CHANNEL: 'No DM Channel exists!',

VOICE_NOT_STAGE_CHANNEL: 'You are only allowed to do this in stage channels.',

Expand Down
2 changes: 1 addition & 1 deletion src/structures/User.js
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/structures/interfaces/Collector.js
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions typings/index.d.ts
Expand Up @@ -103,7 +103,7 @@ import {
RawInviteData,
RawInviteGuildData,
RawInviteStageInstance,
RawMessageAttachementData,
RawMessageAttachmentData,
RawMessageButtonInteractionData,
RawMessageComponentInteractionData,
RawMessageData,
Expand Down Expand Up @@ -1393,7 +1393,7 @@ export class MessageActionRow extends BaseMessageComponent {
}

export class MessageAttachment {
public constructor(attachment: BufferResolvable | Stream, name?: string, data?: RawMessageAttachementData);
public constructor(attachment: BufferResolvable | Stream, name?: string, data?: RawMessageAttachmentData);

public attachment: BufferResolvable | Stream;
public contentType: string | null;
Expand Down
2 changes: 1 addition & 1 deletion typings/rawDataTypes.d.ts
Expand Up @@ -149,7 +149,7 @@ export type RawInviteStageInstance = APIInviteStageInstance;
export type RawMessageData = APIMessage;
export type RawPartialMessageData = GatewayMessageUpdateDispatchData;

export type RawMessageAttachementData = APIAttachment;
export type RawMessageAttachmentData = APIAttachment;

export type RawMessagePayloadData =
| RESTPostAPIChannelMessageJSONBody
Expand Down

0 comments on commit 672baa4

Please sign in to comment.