File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const { version } = require('../../package.json');
20
20
* the client will spawn {@link ClientOptions#shardCount} shards. If set to `auto`, it will fetch the
21
21
* recommended amount of shards from Discord and spawn that amount
22
22
* @property {number } [closeTimeout=5_000] The amount of time in milliseconds to wait for the close frame to be received
23
- * from the WebSocket. Don't have this too high/low. Its best to have it between 2_000-6_000 ms.
23
+ * from the WebSocket. Don't have this too high/low. It's best to have it between 2_000-6_000 ms.
24
24
* @property {number } [shardCount=1] The total amount of shards used by all processes of this bot
25
25
* (e.g. recommended shard count, shard count of the ShardingManager)
26
26
* @property {CacheFactory } [makeCache] Function to create a cache.
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ export class REST extends AsyncEventEmitter<RestEventsMap> {
317
317
headers . Authorization = `${ request . authPrefix ?? this . options . authPrefix } ${ this . #token} ` ;
318
318
}
319
319
320
- // If a reason was set, set it's appropriate header
320
+ // If a reason was set, set its appropriate header
321
321
if ( request . reason ?. length ) {
322
322
headers [ 'X-Audit-Log-Reason' ] = encodeURIComponent ( request . reason ) ;
323
323
}
You can’t perform that action at this time.
0 commit comments