]> git.lizzy.rs Git - rust.git/commitdiff
Fixed formatting
authorPrzemyslaw Horban <p.horban@invinets.com>
Fri, 18 Dec 2020 17:47:03 +0000 (18:47 +0100)
committerPrzemyslaw Horban <p.horban@invinets.com>
Fri, 18 Dec 2020 17:47:03 +0000 (18:47 +0100)
editors/code/src/main.ts

index 1c88b46135eaeef410549ba699a7d93c92912052..191960960a34b69f62e12dbf111b9c0441264654 100644 (file)
@@ -404,9 +404,9 @@ async function queryForGithubToken(state: PersistentState): Promise<void> {
 function warnAboutRustLangExtensionConflict() {
     const rustLangExt = vscode.extensions.getExtension("rust-lang.rust");
     if (rustLangExt !== undefined) {
-        vscode.window .showWarningMessage(
+        vscode.window.showWarningMessage(
             "You have both rust-analyzer (matklad.rust-analyzer) and Rust (rust-lang.rust) " +
             "plugins enabled. These are known to conflict and cause various functions of " +
-            "both plugins to not work correctly. You should disable one of them.", "Got it")
+            "both plugins to not work correctly. You should disable one of them.", "Got it");
     };
 }