about summary refs log tree commit diff
path: root/editors/code
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2023-08-21 09:21:06 +0200
committerRalf Jung <post@ralfj.de>2023-08-21 09:54:24 +0200
commit887cc48ba8929f7fcc3d43258d5b7c76b1e2f8ea (patch)
tree44923cb7d447eb2a535d007474654361d2339017 /editors/code
parent83b3ba1b8191c065bb0dacc79e5896f7f21e4611 (diff)
downloadrust-887cc48ba8929f7fcc3d43258d5b7c76b1e2f8ea.tar.gz
rust-887cc48ba8929f7fcc3d43258d5b7c76b1e2f8ea.zip
fix help text for rust-analyzer.check.invocation{Strategy,Location}
Diffstat (limited to 'editors/code')
-rw-r--r--editors/code/package.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 83460c82c11..44f1b81675a 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -715,7 +715,7 @@
                     "uniqueItems": true
                 },
                 "rust-analyzer.check.invocationLocation": {
-                    "markdownDescription": "Specifies the working directory for running checks.\n- \"workspace\": run checks for workspaces in the corresponding workspaces' root directories.\n    This falls back to \"root\" if `#rust-analyzer.cargo.checkOnSave.invocationStrategy#` is set to `once`.\n- \"root\": run checks in the project's root directory.\nThis config only has an effect when `#rust-analyzer.cargo.buildScripts.overrideCommand#`\nis set.",
+                    "markdownDescription": "Specifies the working directory for running checks.\n- \"workspace\": run checks for workspaces in the corresponding workspaces' root directories.\n    This falls back to \"root\" if `#rust-analyzer.cargo.check.invocationStrategy#` is set to `once`.\n- \"root\": run checks in the project's root directory.\nThis config only has an effect when `#rust-analyzer.cargo.check.overrideCommand#`\nis set.",
                     "default": "workspace",
                     "type": "string",
                     "enum": [
@@ -728,7 +728,7 @@
                     ]
                 },
                 "rust-analyzer.check.invocationStrategy": {
-                    "markdownDescription": "Specifies the invocation strategy to use when running the checkOnSave command.\nIf `per_workspace` is set, the command will be executed for each workspace.\nIf `once` is set, the command will be executed once.\nThis config only has an effect when `#rust-analyzer.cargo.buildScripts.overrideCommand#`\nis set.",
+                    "markdownDescription": "Specifies the invocation strategy to use when running the check command.\nIf `per_workspace` is set, the command will be executed for each workspace.\nIf `once` is set, the command will be executed once.\nThis config only has an effect when `#rust-analyzer.cargo.check.overrideCommand#`\nis set.",
                     "default": "per_workspace",
                     "type": "string",
                     "enum": [