From 6cc32ca5c8fcc91beebffad3a425aeb5e18d16a5 Mon Sep 17 00:00:00 2001 From: Kamil Kisiela Date: Mon, 18 Nov 2024 17:18:53 +0100 Subject: [PATCH 1/3] Update fastify-websocket.ts --- src/use/fastify-websocket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/use/fastify-websocket.ts b/src/use/fastify-websocket.ts index 72ae43fd..cc44cea1 100644 --- a/src/use/fastify-websocket.ts +++ b/src/use/fastify-websocket.ts @@ -38,7 +38,7 @@ export function makeHandler< >( options: ServerOptions>, /** - * The timout between dispatched keep-alive messages. Internally uses the [ws Ping and Pongs]((https://developer.mozilla.org/en-US/docs/Web/API/wss_API/Writing_ws_servers#Pings_and_Pongs_The_Heartbeat_of_wss)) + * The timout between dispatched keep-alive messages. Internally uses the [ws Ping and Pongs](https://developer.mozilla.org/en-US/docs/Web/API/wss_API/Writing_ws_servers#Pings_and_Pongs_The_Heartbeat_of_wss) * to check that the link between the clients and the server is operating and to prevent the link * from being broken due to idling. * From 5c667b1b312eb9a1ad50e5d117ccaa0d75023e06 Mon Sep 17 00:00:00 2001 From: Kamil Kisiela Date: Mon, 18 Nov 2024 17:19:55 +0100 Subject: [PATCH 2/3] Update ws.ts --- src/use/ws.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/use/ws.ts b/src/use/ws.ts index 1572431a..0fdaefaf 100644 --- a/src/use/ws.ts +++ b/src/use/ws.ts @@ -42,7 +42,7 @@ export function useServer< options: ServerOptions>, ws: WebSocketServer, /** - * The timeout between dispatched keep-alive messages. Internally uses the [ws Ping and Pongs]((https://developer.mozilla.org/en-US/docs/Web/API/wss_API/Writing_ws_servers#Pings_and_Pongs_The_Heartbeat_of_wss)) + * The timeout between dispatched keep-alive messages. Internally uses the [ws Ping and Pongs](https://developer.mozilla.org/en-US/docs/Web/API/wss_API/Writing_ws_servers#Pings_and_Pongs_The_Heartbeat_of_wss) * to check that the link between the clients and the server is operating and to prevent the link * from being broken due to idling. * From b74544ad80afa27cfa949d92b141d6296a3a29cd Mon Sep 17 00:00:00 2001 From: Kamil Kisiela Date: Mon, 18 Nov 2024 17:20:16 +0100 Subject: [PATCH 3/3] Update uWebSockets.ts --- src/use/uWebSockets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/use/uWebSockets.ts b/src/use/uWebSockets.ts index ab01b682..4072649e 100644 --- a/src/use/uWebSockets.ts +++ b/src/use/uWebSockets.ts @@ -74,7 +74,7 @@ export function makeBehavior< options: ServerOptions>, behavior: uWS.WebSocketBehavior = {}, /** - * The timout between dispatched keep-alive messages. Internally uses the [ws Ping and Pongs]((https://developer.mozilla.org/en-US/docs/Web/API/wss_API/Writing_ws_servers#Pings_and_Pongs_The_Heartbeat_of_wss)) + * The timout between dispatched keep-alive messages. Internally uses the [ws Ping and Pongs](https://developer.mozilla.org/en-US/docs/Web/API/wss_API/Writing_ws_servers#Pings_and_Pongs_The_Heartbeat_of_wss) * to check that the link between the clients and the server is operating and to prevent the link * from being broken due to idling. *