Write out Cannot (#198377)

spelling: cannot

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2023-11-20 12:22:21 -05:00 committed by GitHub
parent 9cbc6ef29a
commit 69ddb3f3c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -558,7 +558,7 @@ export class ChatService extends Disposable implements IChatService {
rawResponse = { session: model.session! };
} else {
throw new Error(`Can't handle request`);
throw new Error(`Cannot handle request`);
}
if (token.isCancellationRequested) {

View file

@ -193,7 +193,7 @@ if (!opts.web) {
}
if (!fs.existsSync(electronPath || '')) {
fail(`Can't find VSCode at ${electronPath}. Please run VSCode once first (scripts/code.sh, scripts\\code.bat) and try again.`);
fail(`Cannot find VSCode at ${electronPath}. Please run VSCode once first (scripts/code.sh, scripts\\code.bat) and try again.`);
}
quality = parseQuality();
@ -213,7 +213,7 @@ else {
if (typeof testCodeServerPath === 'string') {
if (!fs.existsSync(testCodeServerPath)) {
fail(`Can't find Code server at ${testCodeServerPath}.`);
fail(`Cannot find Code server at ${testCodeServerPath}.`);
} else {
logger.log(`Running web smoke tests against ${testCodeServerPath}`);
}
@ -326,7 +326,7 @@ async function ensureStableCode(): Promise<void> {
}
if (!fs.existsSync(stableCodePath)) {
throw new Error(`Can't find Stable VSCode at ${stableCodePath}.`);
throw new Error(`Cannot find Stable VSCode at ${stableCodePath}.`);
}
logger.log(`Using stable build ${stableCodePath} for migration tests`);