From bac593dcef6e1ea10e0588a1660f1b70269dfa7f Mon Sep 17 00:00:00 2001 From: Hri7566 Date: Thu, 19 Sep 2024 20:28:36 -0400 Subject: [PATCH] Fix comments --- src/ws/Socket.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ws/Socket.ts b/src/ws/Socket.ts index cab48bd..de12f41 100644 --- a/src/ws/Socket.ts +++ b/src/ws/Socket.ts @@ -861,7 +861,7 @@ export class Socket extends EventEmitter { } /** - * Start sending this socket the list of channels periodically + * Allow custom messages to be sent and received from this socket **/ public subscribeToCustom() { if (this.isSubscribedToCustom) return; @@ -869,7 +869,7 @@ export class Socket extends EventEmitter { } /** - * Stop sending this socket the list of channels periodically + * Disallow custom messages to be sent and received from this socket **/ public unsubscribeFromCustom() { if (!this.isSubscribedToCustom) return;