From edd03341b1800b41cce936130558e78f614f3fa7 Mon Sep 17 00:00:00 2001 From: James Liu <2211002+jamesliu96@users.noreply.github.com> Date: Fri, 9 Jun 2023 20:20:37 +0800 Subject: docs: add missing right parenthesis in example code (#3245) add missing right parenthesis in example code in `HTTP server` section --- docs/api/http.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docs/api') diff --git a/docs/api/http.md b/docs/api/http.md index 567560c3c..aed9da27c 100644 --- a/docs/api/http.md +++ b/docs/api/http.md @@ -125,8 +125,7 @@ Bun.serve({ // string key: fs.readFileSync("./key.pem", "utf8"), // array of above - key: [Bun.file('./key1.pem'), Bun.file('./key2.pem'] - + key: [Bun.file('./key1.pem'), Bun.file('./key2.pem')], }); ``` -- cgit v1.2.3