Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #16485 - Young-Flash:minor, r=lnicola
minor: polish warning msg sorry for this 😅 ![PixPin_2024-02-04_18-33-23](https://github.com/rust-lang/rust-analyzer/assets/71162630/9aaa49d7-34f4-4c78-b91c-e85550252e25)
bors 2024-02-05
parent 0113bc9 · parent bec1e0f · commit 39ad79b
-rw-r--r--editors/code/src/main.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index c386b9e5d8..0af58fd781 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -207,7 +207,7 @@ function checkConflictingExtensions() {
if (vscode.extensions.getExtension("panicbit.cargo")) {
vscode.window
.showWarningMessage(
- `You have both the rust-analyzer (rust-lang.rust-analyzer) and Cargo (panicbit.cargo) plugins enabled` +
+ `You have both the rust-analyzer (rust-lang.rust-analyzer) and Cargo (panicbit.cargo) plugins enabled, ` +
'you can disable it or set {"cargo.automaticCheck": false} in settings.json to avoid invoking cargo twice',
"Got it",
)