aboutsummaryrefslogtreecommitdiff
path: root/docs/quickstart.md
diff options
context:
space:
mode:
authorGravatar noahmarro <68234387+noahmarro@users.noreply.github.com> 2023-03-11 15:13:00 +0700
committerGravatar GitHub <noreply@github.com> 2023-03-11 00:13:00 -0800
commita4fdc1e0d50b7cf2eda3797242f38510085689a0 (patch)
tree6e83972430a7461a515c85d8da98cb15c2db3519 /docs/quickstart.md
parentcc7d2cf34388ca03a0b1b711347c3ebd36baf7a5 (diff)
downloadbun-a4fdc1e0d50b7cf2eda3797242f38510085689a0.tar.gz
bun-a4fdc1e0d50b7cf2eda3797242f38510085689a0.tar.zst
bun-a4fdc1e0d50b7cf2eda3797242f38510085689a0.zip
removed JSON trailing comma (#2364)
Diffstat (limited to 'docs/quickstart.md')
-rw-r--r--docs/quickstart.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quickstart.md b/docs/quickstart.md
index 8cba2a17f..1a5aa657c 100644
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -61,7 +61,7 @@ Bun can also execute `"scripts"` from your `package.json`. Add the following scr
"module": "index.ts",
"type": "module",
+ "scripts": {
-+ "start": "bun run index.ts",
++ "start": "bun run index.ts"
+ },
"devDependencies": {
"bun-types": "^0.4.0"