From 88612895970f219120b6e6ac42bdf022c68d403c Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 14 Jul 2020 11:28:21 +0200 Subject: [PATCH] :lipstick: cannot over can't, https://github.com/microsoft/vscode/issues/101857 --- src/vs/vscode.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 2f68cd3296c..fe29cc7149b 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -6286,7 +6286,7 @@ declare module 'vscode' { * task execution can be used to terminate the task. * * @throws When running a ShellExecution or a ProcessExecution - * task in an environment where a new process can't be started. + * task in an environment where a new process cannot be started. * In such an environment, only CustomExecution tasks can be run. * * @param task the task to execute @@ -8070,7 +8070,7 @@ declare module 'vscode' { * allows specifying shell args in * [command-line format](https://msdn.microsoft.com/en-au/08dfcab2-eb6e-49a4-80eb-87d4076c98c6). * @return A new Terminal. - * @throws When running in an environment where a new process can't be started. + * @throws When running in an environment where a new process cannot be started. */ export function createTerminal(name?: string, shellPath?: string, shellArgs?: string[] | string): Terminal; @@ -8079,7 +8079,7 @@ declare module 'vscode' { * * @param options A TerminalOptions object describing the characteristics of the new terminal. * @return A new Terminal. - * @throws When running in an environment where a new process can't be started. + * @throws When running in an environment where a new process cannot be started. */ export function createTerminal(options: TerminalOptions): Terminal; -- GitLab