From 701c2de137d8133e63a33535d00210314ce3cb48 Mon Sep 17 00:00:00 2001 From: Benjamin Brienen Date: Thu, 20 Feb 2025 17:05:18 +0100 Subject: [PATCH] Update editor_features.md fix typos in snippets --- docs/book/src/editor_features.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/book/src/editor_features.md b/docs/book/src/editor_features.md index 73fe9f49a9..5521e395c7 100644 --- a/docs/book/src/editor_features.md +++ b/docs/book/src/editor_features.md @@ -1,6 +1,5 @@ # Editor Features - ## VS Code ### Color configurations @@ -118,7 +117,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" } @@ -145,7 +144,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" } },