diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 8fc48e1022d3e7eaa058766361d1f48cd0126b45..48b083a333716f21442887b92bed3ab7a960a7ae 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -1579,17 +1579,17 @@ declare module 'vscode' { export interface QuickPickItem { /** - * A human readable string which is rendered prominent. + * A human-readable string which is rendered prominent. */ label: string; /** - * A human readable string which is rendered less prominent. + * A human-readable string which is rendered less prominent. */ description?: string; /** - * A human readable string which is rendered less prominent. + * A human-readable string which is rendered less prominent. */ detail?: string; @@ -1693,7 +1693,7 @@ declare module 'vscode' { canSelectMany?: boolean; /** - * A set of file filters that are used by the dialog. Each entry is a human readable label, + * A set of file filters that are used by the dialog. Each entry is a human-readable label, * like "TypeScript", and an array of extensions, e.g. * ```ts * { @@ -1720,7 +1720,7 @@ declare module 'vscode' { saveLabel?: string; /** - * A set of file filters that are used by the dialog. Each entry is a human readable label, + * A set of file filters that are used by the dialog. Each entry is a human-readable label, * like "TypeScript", and an array of extensions, e.g. * ```ts * { @@ -1815,7 +1815,7 @@ declare module 'vscode' { * to the user. * * @param value The current value of the input box. - * @return A human readable string which is presented as diagnostic message. + * @return A human-readable string which is presented as diagnostic message. * Return `undefined`, `null`, or the empty string when 'value' is valid. */ validateInput?(value: string): string | undefined | null | Thenable; @@ -2341,7 +2341,7 @@ declare module 'vscode' { } /** - * The MarkdownString represents human readable text that supports formatting via the + * The MarkdownString represents human-readable text that supports formatting via the * markdown syntax. Standard markdown is supported, also tables, but no embedded html. */ export class MarkdownString { @@ -2386,7 +2386,7 @@ declare module 'vscode' { } /** - * ~~MarkedString can be used to render human readable text. It is either a markdown string + * ~~MarkedString can be used to render human-readable text. It is either a markdown string * or a code-block that provides a language and a code snippet. Note that * markdown strings will be sanitized - that means html will be escaped.~~ * @@ -2683,7 +2683,7 @@ declare module 'vscode' { */ export interface DocumentSymbolProviderMetadata { /** - * A human readable string that is shown when multiple outlines trees show for one document. + * A human-readable string that is shown when multiple outlines trees show for one document. */ label?: string; } @@ -7374,7 +7374,7 @@ declare module 'vscode' { iconPath?: string | Uri | { light: string | Uri; dark: string | Uri } | ThemeIcon; /** - * A human readable string which is rendered less prominent. + * A human-readable string which is rendered less prominent. * When `true`, it is derived from [resourceUri](#TreeItem.resourceUri) and when `falsy`, it is not shown. */ description?: string | boolean;