From 6568c1a290e916764a3ff8b65270a0d5d31fcde5 Mon Sep 17 00:00:00 2001 From: racfop Date: Mon, 18 Sep 2023 08:45:05 -0700 Subject: [PATCH] Fixes line --- content/en/docs/reference/ide-linter-autocomplete.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/reference/ide-linter-autocomplete.md b/content/en/docs/reference/ide-linter-autocomplete.md index 3b66b0c0..f4dbd48d 100644 --- a/content/en/docs/reference/ide-linter-autocomplete.md +++ b/content/en/docs/reference/ide-linter-autocomplete.md @@ -20,7 +20,7 @@ When you open a YAML file that matches the pattern you specified, VSCode will pr Consult your IDE or IDE's extension for specific details on how to do this. -Generally, you need to add the following line to your IDE's settings: +Generally, you need to add the following lines to your IDE's settings: ```json "json.schemas": [ @@ -29,7 +29,7 @@ Generally, you need to add the following line to your IDE's settings: "score.yaml", "score.yml" ], - "url": "https://raw.githubusercontent.com/score-spec/schema/score-v1b1.json" + "url": "https://raw.githubusercontent.com/score-spec/schema/main/score-v1b1.json" } ] ```