Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix some typos #7393

Merged
merged 1 commit into from
Feb 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/builders/src/components/selectMenu/SelectMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class SelectMenuComponent implements Component {
}

/**
* Sets thes minimum values that must be selected in the select menu
* Sets the minimum values that must be selected in the select menu
* @param minValues The minimum values that must be selected
*/
public setMinValues(minValues: number) {
Expand All @@ -53,7 +53,7 @@ export class SelectMenuComponent implements Component {
}

/**
* Sets thes maximum values that must be selected in the select menu
* Sets the maximum values that must be selected in the select menu
* @param minValues The maximum values that must be selected
*/
public setMaxValues(maxValues: number) {
Expand Down
2 changes: 1 addition & 1 deletion packages/discord.js/typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2076,7 +2076,7 @@ export class Sweepers {
public sweepReactions(
filter: CollectionSweepFilter<SweeperDefinitions['reactions'][0], SweeperDefinitions['reactions'][1]>,
): number;
public sweepStageInstnaces(
public sweepStageInstances(
filter: CollectionSweepFilter<SweeperDefinitions['stageInstances'][0], SweeperDefinitions['stageInstances'][1]>,
): number;
public sweepStickers(
Expand Down
2 changes: 1 addition & 1 deletion packages/rest/src/lib/handlers/SequentialHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export class SequentialHandler {
let delay: Promise<void>;

if (isGlobal) {
// Set RateLimitData based on the globl limit
// Set RateLimitData based on the global limit
limit = this.manager.options.globalRequestsPerSecond;
timeout = this.manager.globalReset + this.manager.options.offset - Date.now();
// If this is the first task to reach the global timeout, set the global delay
Expand Down
12 changes: 6 additions & 6 deletions packages/voice/src/networking/VoiceWebSocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class VoiceWebSocket extends TypedEmitter<VoiceWebSocketEvents> {
* The time (milliseconds since UNIX epoch) that the last heartbeat was sent. This is set to 0 if a heartbeat
* hasn't been sent yet.
*/
private lastHeatbeatSend: number;
private lastHeartbeatSend: number;

/**
* The number of consecutively missed heartbeats.
Expand Down Expand Up @@ -75,7 +75,7 @@ export class VoiceWebSocket extends TypedEmitter<VoiceWebSocketEvents> {
this.ws.onclose = (e) => this.emit('close', e);

this.lastHeartbeatAck = 0;
this.lastHeatbeatSend = 0;
this.lastHeartbeatSend = 0;

this.debug = debug ? (message: string) => this.emit('debug', message) : null;
}
Expand Down Expand Up @@ -119,7 +119,7 @@ export class VoiceWebSocket extends TypedEmitter<VoiceWebSocketEvents> {
if (packet.op === VoiceOpcodes.HeartbeatAck) {
this.lastHeartbeatAck = Date.now();
this.missedHeartbeats = 0;
this.ping = this.lastHeartbeatAck - this.lastHeatbeatSend;
this.ping = this.lastHeartbeatAck - this.lastHeartbeatSend;
}

/**
Expand Down Expand Up @@ -151,9 +151,9 @@ export class VoiceWebSocket extends TypedEmitter<VoiceWebSocketEvents> {
* Sends a heartbeat over the WebSocket.
*/
private sendHeartbeat() {
this.lastHeatbeatSend = Date.now();
this.lastHeartbeatSend = Date.now();
this.missedHeartbeats++;
const nonce = this.lastHeatbeatSend;
const nonce = this.lastHeartbeatSend;
return this.sendPacket({
op: VoiceOpcodes.Heartbeat,
d: nonce,
Expand All @@ -169,7 +169,7 @@ export class VoiceWebSocket extends TypedEmitter<VoiceWebSocketEvents> {
if (typeof this.heartbeatInterval !== 'undefined') clearInterval(this.heartbeatInterval);
if (ms > 0) {
this.heartbeatInterval = setInterval(() => {
if (this.lastHeatbeatSend !== 0 && this.missedHeartbeats >= 3) {
if (this.lastHeartbeatSend !== 0 && this.missedHeartbeats >= 3) {
// Missed too many heartbeats - disconnect
this.ws.close();
this.setHeartbeatInterval(-1);
Expand Down