diff options
author | 2023-07-16 21:43:22 -0700 | |
---|---|---|
committer | 2023-07-16 21:43:22 -0700 | |
commit | a86d00c6728f0fdab2f9302c3e02bc712df4ba0c (patch) | |
tree | ad38927bff46671a0a6461aa580ad87844e5ffb4 | |
parent | d5c51092c818dadf49a7aba700d6ada8c3f8e9c3 (diff) | |
download | bun-a86d00c6728f0fdab2f9302c3e02bc712df4ba0c.tar.gz bun-a86d00c6728f0fdab2f9302c3e02bc712df4ba0c.tar.zst bun-a86d00c6728f0fdab2f9302c3e02bc712df4ba0c.zip |
Update nav.ts
-rw-r--r-- | docs/nav.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/nav.ts b/docs/nav.ts index 64b08b0e1..13af7b20e 100644 --- a/docs/nav.ts +++ b/docs/nav.ts @@ -242,6 +242,9 @@ export default { page("api/websockets", "WebSockets", { description: `Bun supports server-side WebSockets with on-the-fly compression, TLS support, and a Bun-native pubsub API.`, }), // "`Bun.serve`"), + page("api/workers", "Workers", { + description: `Run code in a separate thread with Bun's native Worker API.`, + }), // "`Worker`"), page("api/binary-data", "Binary data", { description: `How to represent and manipulate binary data in Bun.`, }), // "`Bun.serve`"), @@ -254,9 +257,6 @@ export default { page("api/import-meta", "import.meta", { description: `Module-scoped metadata and utilities`, }), // "`bun:sqlite`"), - page("api/workers", "Workers", { - description: `Run code in a separate thread with Bun's native Worker API.`, - }), // "`Worker`"), page("api/sqlite", "SQLite", { description: `The fastest SQLite driver for JavaScript is baked directly into Bun.`, }), // "`bun:sqlite`"), |