From 02e78484555b39323e0322abe76be9d2e6be7a36 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Mon, 15 Jul 2024 15:52:06 -0700 Subject: [PATCH] Tweak lazy var setting description (#221752) See #221513 --- src/vs/workbench/contrib/debug/browser/debug.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/debug/browser/debug.contribution.ts b/src/vs/workbench/contrib/debug/browser/debug.contribution.ts index ad1829430345e..5a5fa7d5cc665 100644 --- a/src/vs/workbench/contrib/debug/browser/debug.contribution.ts +++ b/src/vs/workbench/contrib/debug/browser/debug.contribution.ts @@ -628,7 +628,7 @@ configurationRegistry.registerConfiguration({ nls.localize('debug.autoExpandLazyVariables.on', "Always automatically expand lazy variables."), nls.localize('debug.autoExpandLazyVariables.off', "Never automatically expand lazy variables.") ], - description: nls.localize('debug.autoExpandLazyVariables', "Controls if variables, such as getters, are automatically resolved and expanded by the debugger.") + description: nls.localize('debug.autoExpandLazyVariables', "Controls whether variables that are lazily resolved, such as getters, are automatically resolved and expanded by the debugger.") }, 'debug.enableStatusBarColor': { type: 'boolean',