Skip to content

Commit

Permalink
no need to open the parentheses (#10666)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaleSeo authored Apr 29, 2024
1 parent 0f4449d commit 72b3045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api/websockets.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Bun.serve({
if (server.upgrade(req)) {
return; // do not return a Response
}
return new Response("Upgrade failed :(", { status: 500 });
return new Response("Upgrade failed", { status: 500 });
},
websocket: {}, // handlers
});
Expand Down

0 comments on commit 72b3045

Please sign in to comment.