diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-05-21 13:51:52 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-05-21 13:51:52 +0100 |
commit | 0c2b548b0b5712dcc2f9a4eead57e028b5461ba7 (patch) | |
tree | b6ecbc6c5bac1d9cbfa4fe4f08073ac29feabf86 /editors/code | |
parent | a4e6963a2313971fe7bbec97d03bc67266ef68a9 (diff) | |
parent | 0f953ddd9e8b9a6342be82797fbf88bb56fc6715 (diff) |
Merge #4550
4550: Fix phrasing in inlay hints settings r=matklad a=lnicola
Part of #4549
r? @LucianoBestia
Co-authored-by: Laurențiu Nicola <[email protected]>
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/package.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index d899f60e3..78f647baa 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -313,22 +313,22 @@ | |||
313 | "rust-analyzer.inlayHints.enable": { | 313 | "rust-analyzer.inlayHints.enable": { |
314 | "type": "boolean", | 314 | "type": "boolean", |
315 | "default": true, | 315 | "default": true, |
316 | "description": "Disable all inlay hints" | 316 | "description": "Whether to show inlay hints" |
317 | }, | 317 | }, |
318 | "rust-analyzer.inlayHints.typeHints": { | 318 | "rust-analyzer.inlayHints.typeHints": { |
319 | "type": "boolean", | 319 | "type": "boolean", |
320 | "default": true, | 320 | "default": true, |
321 | "description": "Whether to show inlay type hints" | 321 | "description": "Whether to show inlay type hints for variables." |
322 | }, | 322 | }, |
323 | "rust-analyzer.inlayHints.chainingHints": { | 323 | "rust-analyzer.inlayHints.chainingHints": { |
324 | "type": "boolean", | 324 | "type": "boolean", |
325 | "default": true, | 325 | "default": true, |
326 | "description": "Whether to show inlay type hints for method chains" | 326 | "description": "Whether to show inlay type hints for method chains." |
327 | }, | 327 | }, |
328 | "rust-analyzer.inlayHints.parameterHints": { | 328 | "rust-analyzer.inlayHints.parameterHints": { |
329 | "type": "boolean", | 329 | "type": "boolean", |
330 | "default": true, | 330 | "default": true, |
331 | "description": "Whether to show function parameter name inlay hints at the call site" | 331 | "description": "Whether to show function parameter name inlay hints at the call site." |
332 | }, | 332 | }, |
333 | "rust-analyzer.inlayHints.maxLength": { | 333 | "rust-analyzer.inlayHints.maxLength": { |
334 | "type": [ | 334 | "type": [ |