From 4454a14dd28cd93848b138a5da412d7442d04047 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 26 Jan 2022 07:49:14 +0100 Subject: [PATCH] Ambiguity in comments for createFileSystemWatcher (fix #141494) --- src/vscode-dts/vscode.d.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/vscode-dts/vscode.d.ts b/src/vscode-dts/vscode.d.ts index a3be49b4ee497..4ee7e418ff905 100644 --- a/src/vscode-dts/vscode.d.ts +++ b/src/vscode-dts/vscode.d.ts @@ -11003,9 +11003,8 @@ declare module 'vscode' { * will be reported). * * Providing a `string` as `globPattern` acts as convenience method for watching file events in - * all opened workspace folders. This method should be used if you only care about file events - * from the workspace and not from any other folder. It cannot be used to add more folders for - * file watching. + * all opened workspace folders. It cannot be used to add more folders for file watching, nor will + * it report any file events from folders that are not part of the opened workspace folders. * * Optionally, flags to ignore certain kinds of events can be provided. *