docs: remove extra assignment (#13389)

This commit is contained in:
Roman
2024-08-19 00:52:00 +07:00
committed by GitHub
parent fd75ca7585
commit 9993d72fee

View File

@@ -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,