From 791558658f1da3cc68d277f0a32e99db8d501dbd Mon Sep 17 00:00:00 2001 From: Sha Mwe La <62544170+shamwela@users.noreply.github.com> Date: Tue, 20 Jul 2021 20:26:00 +0630 Subject: [PATCH] Remove trailing comma (#773) --- docs/src/pages/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }, } ```