Skip to content

Commit

Permalink
docs: fix broken links (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored Nov 19, 2024
1 parent 6cfe4d5 commit 931c25e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/use/@fastify/websocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function makeHandler<
>(
options: ServerOptions<P, Extra & Partial<E>>,
/**
* 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/WebSockets_API/Writing_WebSocket_servers#pings_and_pongs_the_heartbeat_of_websockets)
* to check that the link between the clients and the server is operating and to prevent the link
* from being broken due to idling.
*
Expand Down
2 changes: 1 addition & 1 deletion src/use/fastify-websocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function makeHandler<
>(
options: ServerOptions<P, Extra & Partial<E>>,
/**
* 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/WebSockets_API/Writing_WebSocket_servers#pings_and_pongs_the_heartbeat_of_websockets)
* to check that the link between the clients and the server is operating and to prevent the link
* from being broken due to idling.
*
Expand Down
2 changes: 1 addition & 1 deletion src/use/uWebSockets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function makeBehavior<
options: ServerOptions<P, Extra & Partial<E>>,
behavior: uWS.WebSocketBehavior<unknown> = {},
/**
* 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/WebSockets_API/Writing_WebSocket_servers#pings_and_pongs_the_heartbeat_of_websockets)
* to check that the link between the clients and the server is operating and to prevent the link
* from being broken due to idling.
*
Expand Down
2 changes: 1 addition & 1 deletion src/use/ws.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function useServer<
options: ServerOptions<P, Extra & Partial<E>>,
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/WebSockets_API/Writing_WebSocket_servers#pings_and_pongs_the_heartbeat_of_websockets)
* to check that the link between the clients and the server is operating and to prevent the link
* from being broken due to idling.
*
Expand Down

0 comments on commit 931c25e

Please sign in to comment.