diff --git a/docs/guides/http/cluster.md b/docs/guides/http/cluster.md index 1c3537e4c03d45..7d5e8b992d0c07 100644 --- a/docs/guides/http/cluster.md +++ b/docs/guides/http/cluster.md @@ -10,7 +10,7 @@ This automatically load balances incoming requests across multiple instances of ```ts#server.ts import { serve } from "bun"; -const id = = Math.random().toString(36).slice(2); +const id = Math.random().toString(36).slice(2); serve({ port: process.env.PORT || 8080,