Skip to content

Commit

Permalink
Merge pull request #113710 from mitsuhiko/patch-1
Browse files Browse the repository at this point in the history
Fix a typo in a log message in extHostCommands.ts
  • Loading branch information
jrieken committed Jan 4, 2021
2 parents 0490bb1 + 8fc5e37 commit 8ed5090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/api/common/extHostCommands.ts
Expand Up @@ -103,7 +103,7 @@ export class ExtHostCommands implements ExtHostCommandsShape {

const internalArgs = apiCommand.args.map((arg, i) => {
if (!arg.validate(apiArgs[i])) {
throw new Error(`Invalid argument '${arg.name}' when running '${apiCommand.id}', receieved: ${apiArgs[i]}`);
throw new Error(`Invalid argument '${arg.name}' when running '${apiCommand.id}', received: ${apiArgs[i]}`);
}
return arg.convert(apiArgs[i]);
});
Expand Down

0 comments on commit 8ed5090

Please sign in to comment.