summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSimon Hartley <170740+scrhartley@users.noreply.github.com>2025-03-19 06:34:20 +0000
committerGitHub <noreply@github.com>2025-03-19 07:34:20 +0100
commitf8f7466d5c97ae380174972573f2b172f31939b2 (patch)
treeafbc5372b749740b70635c45421bc12bab42ca3a
parentfcf74577665a0480beb5aed3f58688c898bb0cd1 (diff)
downloadhtmx-f8f7466d5c97ae380174972573f2b172f31939b2.tar.gz
htmx-f8f7466d5c97ae380174972573f2b172f31939b2.zip
Fix broken link in SSE extension docs (#3241)
-rw-r--r--www/content/extensions/sse.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/content/extensions/sse.md b/www/content/extensions/sse.md
index bf1ae2e9..12e36a3f 100644
--- a/www/content/extensions/sse.md
+++ b/www/content/extensions/sse.md
@@ -10,7 +10,7 @@ your htmx webpage in real-time.
SSE is a lightweight alternative to WebSockets that works over existing HTTP connections, so it is easy to use through
proxy servers and firewalls. Remember, SSE is a uni-directional service, so you cannot send any messages to an SSE
server once the connection has been established. If you need bi-directional communication, then you should consider
-using [WebSockets](@web-sockets.md) instead.
+using [WebSockets](@/extensions/ws.md) instead.
This extension replaces the experimental `hx-sse` attribute built into previous versions of htmx. For help migrating
from older versions, see the migration guide at the bottom of this page.