From ad36148dd2d6ea51f06496438691000fb5fdbabf Mon Sep 17 00:00:00 2001 From: John Murray Date: Mon, 25 Oct 2021 08:48:23 +0100 Subject: [PATCH] correct doc for `count` property of `SourceControl` (#117765) (#132242) --- src/vs/vscode.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index edd273928b2..77abc5089bd 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -12734,8 +12734,9 @@ declare module 'vscode' { * The UI-visible count of {@link SourceControlResourceState resource states} of * this source control. * - * Equals to the total number of {@link SourceControlResourceState resource state} - * of this source control, if undefined. + * If undefined, this source control will + * - display its UI-visible count as zero, and + * - contribute the count of its {@link SourceControlResourceState resource states} to the UI-visible aggregated count for all source controls */ count?: number; -- GitLab