aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar James Liu <2211002+jamesliu96@users.noreply.github.com> 2023-06-09 20:20:37 +0800
committerGravatar GitHub <noreply@github.com> 2023-06-09 05:20:37 -0700
commitedd03341b1800b41cce936130558e78f614f3fa7 (patch)
treed82fb065f7fec03d606da3293b08c6fb37816d6b
parent1d2f06b37eb93fb592138e2705e99f21bc414b1b (diff)
downloadbun-edd03341b1800b41cce936130558e78f614f3fa7.tar.gz
bun-edd03341b1800b41cce936130558e78f614f3fa7.tar.zst
bun-edd03341b1800b41cce936130558e78f614f3fa7.zip
docs: add missing right parenthesis in example code (#3245)
add missing right parenthesis in example code in `HTTP server` section
-rw-r--r--docs/api/http.md3
1 files changed, 1 insertions, 2 deletions
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')],
});
```