summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGravatar Sha Mwe La <62544170+shamwela@users.noreply.github.com> 2021-07-20 20:26:00 +0630
committerGravatar GitHub <noreply@github.com> 2021-07-20 06:56:00 -0700
commit791558658f1da3cc68d277f0a32e99db8d501dbd (patch)
tree0980d338f374eeb81f9451ec9374189d5b8a0a31 /docs/src
parent59e558bbc09c7f400ad7ef45e5432aaaebc3c98e (diff)
downloadastro-791558658f1da3cc68d277f0a32e99db8d501dbd.tar.gz
astro-791558658f1da3cc68d277f0a32e99db8d501dbd.tar.zst
astro-791558658f1da3cc68d277f0a32e99db8d501dbd.zip
Remove trailing comma (#773)
Diffstat (limited to '')
-rw-r--r--docs/src/pages/installation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/installation.md b/docs/src/pages/installation.md
index 49077312b..9865573b0 100644
--- a/docs/src/pages/installation.md
+++ b/docs/src/pages/installation.md
@@ -60,7 +60,7 @@ You can now replace the placeholder "scripts" section of your `package.json` fil
"scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
+ "start": "astro dev",
-+ "build": "astro build",
++ "build": "astro build"
},
}
```