about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorYoung-Flash <dongyang@apache.org>2024-01-30 20:33:15 +0800
committerYoung-Flash <dongyang@apache.org>2024-01-30 20:33:15 +0800
commit4facb6253e38d36a09212ea20374a98b84071819 (patch)
tree7eabac0230e83d4d4e373805f3c573a5b81c4871 /editors/code/src
parent96ebad0409f513ea60fb9bd2564247f6bbec30cc (diff)
minor: update warning msg
Diffstat (limited to 'editors/code/src')
-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 6935d529aad..c386b9e5d8f 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) ` +
+                `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",
             )