Skip to content

Commit

Permalink
Merge pull request #50838 from zevisert/spelling/task-quoting
Browse files Browse the repository at this point in the history
Spelling fix Ouoting -> Quoting
  • Loading branch information
dbaeumer authored May 31, 2018
2 parents 228df85 + 2d4e116 commit 3311b9e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ export class TerminalTaskSystem implements ITaskSystem {
return command;
}
let basename = path.parse(shellExecutable).name.toLowerCase();
let shellQuoteOptions = this.getOuotingOptions(basename, shellOptions);
let shellQuoteOptions = this.getQuotingOptions(basename, shellOptions);

function needsQuotes(value: string): boolean {
if (value.length >= 2) {
Expand Down Expand Up @@ -784,7 +784,7 @@ export class TerminalTaskSystem implements ITaskSystem {
return commandLine;
}

private getOuotingOptions(shellBasename: string, shellOptions: ShellConfiguration): ShellQuotingOptions {
private getQuotingOptions(shellBasename: string, shellOptions: ShellConfiguration): ShellQuotingOptions {
if (shellOptions && shellOptions.quoting) {
return shellOptions.quoting;
}
Expand Down

0 comments on commit 3311b9e

Please sign in to comment.