Skip to content

Commit

Permalink
docs: remove extra assignment (#13389)
Browse files Browse the repository at this point in the history
  • Loading branch information
oddyamill authored Aug 18, 2024
1 parent fd75ca7 commit 9993d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/http/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9993d72

Please sign in to comment.