From 9f325e116098bd719dc064c3b9525d10bf5c97c4 Mon Sep 17 00:00:00 2001 From: silverwind Date: Tue, 28 Sep 2021 15:41:53 +0200 Subject: [PATCH] Fix letter case in repo URL The repo url in `package.json` is incorrectly using uppercase in the origanization name, fix that. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ad119f3c..ff805345 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "module": "./esm/vs/editor/editor.main.js", "repository": { "type": "git", - "url": "https://github.com/Microsoft/monaco-editor" + "url": "https://github.com/microsoft/monaco-editor" }, "devDependencies": { "clean-css": "^5.1.1",