From df9193bf3edda7426e181d9fb91633a4ee9b48bb Mon Sep 17 00:00:00 2001 From: Stefan Dirix Date: Thu, 15 Oct 2020 13:58:01 +0200 Subject: [PATCH] Adjust return value in 'FileSystemProvider' API doc Signed-off-by: Stefan Dirix Contributed on behalf of STMicroelectronics --- packages/filesystem/src/common/files.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/filesystem/src/common/files.ts b/packages/filesystem/src/common/files.ts index ec1d55086e885..15b3aad443636 100644 --- a/packages/filesystem/src/common/files.ts +++ b/packages/filesystem/src/common/files.ts @@ -606,7 +606,7 @@ export interface FileSystemProvider { * Retrieve the content of a given directory. * @param resource The `URI` of the directory. * - * @returns A map containing the {@link FileType} for each child resource (uri). + * @returns A map containing the {@link FileType} for each child resource, identified by name. */ readdir(resource: URI): Promise<[string, FileType][]>;