diff options
author | Lucas Schwiderski <[email protected]> | 2021-05-29 17:08:14 +0100 |
---|---|---|
committer | Lucas Schwiderski <[email protected]> | 2021-05-29 17:08:14 +0100 |
commit | 9a057c0ff48a1c99870c52d839284ead74a555c1 (patch) | |
tree | 105f3bec13d1dcd1640400458a118a2fdfe4ea19 /editors/code | |
parent | 247faf271b9098624cb0b09dd4914da66497dd5a (diff) |
Fix incorrect setting descriptions
Descriptions for diagnostic warning hint and info display were swapped.
Fixes #8485.
Signed-off-by: Lucas Schwiderski <[email protected]>
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/package.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 05cbccf94..5b80cc1f9 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -597,7 +597,7 @@ | |||
597 | "type": "object" | 597 | "type": "object" |
598 | }, | 598 | }, |
599 | "rust-analyzer.diagnostics.warningsAsHint": { | 599 | "rust-analyzer.diagnostics.warningsAsHint": { |
600 | "markdownDescription": "List of warnings that should be displayed with info severity.\n\nThe warnings will be indicated by a blue squiggly underline in code\nand a blue icon in the `Problems Panel`.", | 600 | "markdownDescription": "List of warnings that should be displayed with hint severity.\n\nThe warnings will be indicated by faded text or three dots in code\nand will not show up in the `Problems Panel`.", |
601 | "default": [], | 601 | "default": [], |
602 | "type": "array", | 602 | "type": "array", |
603 | "items": { | 603 | "items": { |
@@ -605,7 +605,7 @@ | |||
605 | } | 605 | } |
606 | }, | 606 | }, |
607 | "rust-analyzer.diagnostics.warningsAsInfo": { | 607 | "rust-analyzer.diagnostics.warningsAsInfo": { |
608 | "markdownDescription": "List of warnings that should be displayed with hint severity.\n\nThe warnings will be indicated by faded text or three dots in code\nand will not show up in the `Problems Panel`.", | 608 | "markdownDescription": "List of warnings that should be displayed with info severity.\n\nThe warnings will be indicated by a blue squiggly underline in code\nand a blue icon in the `Problems Panel`.", |
609 | "default": [], | 609 | "default": [], |
610 | "type": "array", | 610 | "type": "array", |
611 | "items": { | 611 | "items": { |