From 57b529d181fba37b9ee2daf9995d80eb6c73b6fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas=20de=20Oliveira=20Lopes?= <55464917+jlucaso1@users.noreply.github.com> Date: Sat, 27 Apr 2024 20:44:24 -0300 Subject: [PATCH] fix: udp docs navbar (#10579) --- docs/nav.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/nav.ts b/docs/nav.ts index 17cf464f9164f8..06d1239f78cdd4 100644 --- a/docs/nav.ts +++ b/docs/nav.ts @@ -309,9 +309,9 @@ export default { page("api/tcp", "TCP sockets", { description: `Bun's native API implements Web-standard TCP Sockets, plus a Bun-native API for building fast TCP servers.`, }), // "`Bun.{listen|connect}`") - page("api/tcp", "TCP sockets", { + page("api/udp", "UDP sockets", { description: `Bun's native API implements fast and flexible UDP sockets.`, - }), // "`Bun.{listen|connect}`") + }), // "`Bun.udpSocket`") page("api/globals", "Globals", { description: `Bun implements a range of Web APIs, Node.js APIs, and Bun-native APIs that are available in the global scope.`, }), // "`Bun.write`"),