diff options
author | 2021-07-20 20:26:00 +0630 | |
---|---|---|
committer | 2021-07-20 06:56:00 -0700 | |
commit | 791558658f1da3cc68d277f0a32e99db8d501dbd (patch) | |
tree | 0980d338f374eeb81f9451ec9374189d5b8a0a31 /docs/src | |
parent | 59e558bbc09c7f400ad7ef45e5432aaaebc3c98e (diff) | |
download | astro-791558658f1da3cc68d277f0a32e99db8d501dbd.tar.gz astro-791558658f1da3cc68d277f0a32e99db8d501dbd.tar.zst astro-791558658f1da3cc68d277f0a32e99db8d501dbd.zip |
Remove trailing comma (#773)
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/installation.md | 2 |
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" }, } ``` |