From 73492115cdb88f3b5ffb5ae0161dc00d76e5f037 Mon Sep 17 00:00:00 2001 From: 39sho Date: Mon, 24 Jun 2024 00:29:34 +0900 Subject: [PATCH] docs: fix localhost url --- docs/1.guide/3.peer.md | 2 +- docs/1.guide/5.pubsub.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/1.guide/3.peer.md b/docs/1.guide/3.peer.md index 83567c0..ea03c60 100644 --- a/docs/1.guide/3.peer.md +++ b/docs/1.guide/3.peer.md @@ -57,4 +57,4 @@ broadcast a message to the channel. :read-more{to="/guide/pubsub"} > [!IMPORTANT] -> Native pub/sub is currently only available for [Bun](/adapters/bun) and [Node.js with uWebSockets](http://localhost:4000/adapters/node#uwebsockets). +> Native pub/sub is currently only available for [Bun](/adapters/bun) and [Node.js with uWebSockets](/adapters/node#uwebsockets). diff --git a/docs/1.guide/5.pubsub.md b/docs/1.guide/5.pubsub.md index b7140cd..1e0ad56 100644 --- a/docs/1.guide/5.pubsub.md +++ b/docs/1.guide/5.pubsub.md @@ -7,7 +7,7 @@ icon: simple-icons:googlepubsub CrossWS supports native pub-sub API integration. A [peer](/guide/peer) can be subscribed to a set of named channels using `peer.subscribe()`. Messages can be published to a channel using `peer.publish(, )`. > [!IMPORTANT] -> Native pub/sub is currently only available for [Bun](/adapters/bun) and [Node.js](http://localhost:4000/adapters/node#uwebsockets). +> Native pub/sub is currently only available for [Bun](/adapters/bun) and [Node.js](/adapters/node#uwebsockets). ```js import { defineHooks } from "crossws";