From 2018ae3a6db94d3156ed8e055c35a1db1abc4288 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Fri, 27 Apr 2018 11:12:34 +0200 Subject: [PATCH] remote - fix jsdoc --- src/vs/vscode.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 668c13ef6cc..5ac3654f76d 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -5013,10 +5013,10 @@ declare module 'vscode' { * * @param uri The uri of the file. * @param content The new content of the file. - * @param options Defines is missing files should or must be created. + * @param options Defines if missing files should or must be created. * @throws [`FileNotFound`](#FileSystemError.FileNotFound) when `uri` doesn't exist and `create` is not set. * @throws [`FileNotFound`](#FileSystemError.FileNotFound) when the parent of `uri` doesn't exist and `create` is set. - * @throws [`FileExists`](#FileSystemError.FileExists) when `uri` already exists and `overwrite` is set. + * @throws [`FileExists`](#FileSystemError.FileExists) when `uri` already exists, `create` is set but `overwrite` is not set. * @throws [`NoPermissions`](#FileSystemError.NoPermissions) when permissions aren't sufficient. */ writeFile(uri: Uri, content: Uint8Array, options: { create: boolean, overwrite: boolean }): void | Thenable; -- GitLab