diff options
| author | nokazn <41154684+nokazn@users.noreply.github.com> | 2023-11-12 10:29:56 +0900 |
|---|---|---|
| committer | nokazn <41154684+nokazn@users.noreply.github.com> | 2023-11-12 10:29:56 +0900 |
| commit | b6f0994ee61370b42fa2d834259311eb1355c7ff (patch) | |
| tree | a3d0af728359cc5f714c6d611369bb9113849725 | |
| parent | 5fcf5289e726785d20d3aa4d13d90a43ed248e83 (diff) | |
| download | rust-b6f0994ee61370b42fa2d834259311eb1355c7ff.tar.gz rust-b6f0994ee61370b42fa2d834259311eb1355c7ff.zip | |
docs: fix VS Code setting samples
| -rw-r--r-- | docs/user/manual.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc index b605de4c7b8..18d5ddd4d0a 100644 --- a/docs/user/manual.adoc +++ b/docs/user/manual.adoc @@ -946,7 +946,7 @@ Or it is possible to specify vars more granularly: "rust-analyzer.runnables.extraEnv": [ { // "mask": null, // null mask means that this rule will be applied for all runnables - env: { + "env": { "APP_ID": "1", "APP_DATA": "asdf" } @@ -968,7 +968,7 @@ If needed, you can set different values for different platforms: "rust-analyzer.runnables.extraEnv": [ { "platform": "win32", // windows only - env: { + "env": { "APP_DATA": "windows specific data" } }, |
