mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 20:43:21 +00:00
Fix grammar nit
Co-authored-by: Laurențiu Nicola <lnicola@users.noreply.github.com>
This commit is contained in:
parent
a8b60afc2a
commit
92b13d2fab
1 changed files with 1 additions and 1 deletions
|
@ -425,7 +425,7 @@ function warnAboutExtensionConflicts() {
|
||||||
const fst = found[0];
|
const fst = found[0];
|
||||||
const sec = found[1];
|
const sec = found[1];
|
||||||
vscode.window.showWarningMessage(
|
vscode.window.showWarningMessage(
|
||||||
`You have both ${fst[0]} (${fst[1]}) and ${sec[0]} (${sec[1]}) ` +
|
`You have both the ${fst[0]} (${fst[1]}) and ${sec[0]} (${sec[1]}) ` +
|
||||||
"plugins enabled. These are known to conflict and cause various functions of " +
|
"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");
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue