From 9993d72fee798592c96845893ac7d3db9af38d9a Mon Sep 17 00:00:00 2001
From: Roman <43600905+oddyamill@users.noreply.github.com>
Date: Mon, 19 Aug 2024 00:52:00 +0700
Subject: [PATCH] docs: remove extra assignment (#13389)

---
 docs/guides/http/cluster.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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,