about summary refs log tree commit diff
path: root/editors/code
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-07-08 13:50:20 +0000
committerbors <bors@rust-lang.org>2022-07-08 13:50:20 +0000
commitdf4ed94f2fb7c16daefa1722657216609f0e8d31 (patch)
tree17af8583fabe0eba9592c1e9882dfd145974aec1 /editors/code
parent09abd76c6a601797c2287a9ef341b7ce904e8aa6 (diff)
parent6c6ae965ba1235b6cbd8299e2959698bd394e80a (diff)
downloadrust-df4ed94f2fb7c16daefa1722657216609f0e8d31.tar.gz
rust-df4ed94f2fb7c16daefa1722657216609f0e8d31.zip
Auto merge of #12722 - jonas-schievink:update-urls, r=jonas-schievink
internal: Update remaining GitHub URLs

The old links still work, but it seems less confusing to have them point to the right repo
Diffstat (limited to 'editors/code')
-rw-r--r--editors/code/src/debug.ts2
-rw-r--r--editors/code/src/main.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/debug.ts b/editors/code/src/debug.ts
index 1f06c99576f..bd45599227e 100644
--- a/editors/code/src/debug.ts
+++ b/editors/code/src/debug.ts
@@ -114,7 +114,7 @@ async function getDebugConfiguration(
     const wsFolder = path.normalize(workspace.uri.fsPath);
     const workspaceQualifier = isMultiFolderWorkspace ? `:${workspace.name}` : "";
     function simplifyPath(p: string): string {
-        // see https://github.com/rust-analyzer/rust-analyzer/pull/5513#issuecomment-663458818 for why this is needed
+        // see https://github.com/rust-lang/rust-analyzer/pull/5513#issuecomment-663458818 for why this is needed
         return path.normalize(p).replace(wsFolder, "${workspaceFolder" + workspaceQualifier + "}");
     }
 
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index 7049a2c1f69..9ae20ddc4ac 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -316,7 +316,7 @@ async function getServer(
             "You need to manually clone the rust-analyzer repository and " +
             "run `cargo xtask install --server` to build the language server from sources. " +
             "If you feel that your platform should be supported, please create an issue " +
-            "about that [here](https://github.com/rust-analyzer/rust-analyzer/issues) and we " +
+            "about that [here](https://github.com/rust-lang/rust-analyzer/issues) and we " +
             "will consider it."
     );
     return undefined;