]> git.puffer.fish Git - matthieu/gru.git/commitdiff
typo
authorMatthieuCoder <matthieu@matthieu-dev.xyz>
Wed, 4 Jan 2023 23:55:08 +0000 (03:55 +0400)
committerMatthieuCoder <matthieu@matthieu-dev.xyz>
Wed, 4 Jan 2023 23:55:08 +0000 (03:55 +0400)
src/sys/events/client.ts

index 44de1f95c6c32460987de6162b9e4fdf11c0ae0b..bad82030722b0a8ccdf4b7c580d186789e4ee99f 100644 (file)
@@ -11,7 +11,7 @@ import {API} from '@discordjs/core';
 import {Transport, type TransportOptions} from './transport';
 
 /**
- * Maps an event name (O['t']) and a Union O and extracts alla the union members that have a matching O['t']
+ * Maps an event name (O['t']) and a Union O and extracts all the union members that have a matching O['t']
  * Example:
  *  type Variant1 = { t: 'type1', myProperty: 1 };
  *  type Variant2 = { t: 'type2', anotherProperty: 2 };
@@ -132,7 +132,7 @@ export class Client extends undefinedClient {
                                return self[symbol as string];
                        },
                });
-               
+
                this.transport = new Transport(self, options.transport);
 
                // This is safe because this event is emitted by the EventEmitter itself.