diff options
author | 2023-06-09 20:20:37 +0800 | |
---|---|---|
committer | 2023-06-09 05:20:37 -0700 | |
commit | edd03341b1800b41cce936130558e78f614f3fa7 (patch) | |
tree | d82fb065f7fec03d606da3293b08c6fb37816d6b | |
parent | 1d2f06b37eb93fb592138e2705e99f21bc414b1b (diff) | |
download | bun-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.md | 3 |
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')], }); ``` |