Fix typos in log messages

Several of the log messages contained minor typos.
This commit is contained in:
per1234
2022-08-20 19:42:51 -07:00
parent 1281ad1932
commit 3ec62642dd
5 changed files with 5 additions and 5 deletions

View File

@@ -743,7 +743,7 @@ export class CompilerErrors
}
console.warn(
'compiler-errors',
`could not found editor widget for URI: ${uri}`
`could not find editor widget for URI: ${uri}`
);
return undefined;
}

View File

@@ -97,7 +97,7 @@ export class SketchesServiceClientImpl
);
if (!this.sketches.has(toAdd.uri)) {
console.log(
`New sketch '${toAdd.name}' was crated in sketchbook '${sketchDirUri}'.`
`New sketch '${toAdd.name}' was created in sketchbook '${sketchDirUri}'.`
);
this.sketches.set(toAdd.uri, toAdd);
this.fireSoon(toAdd, 'created');

View File

@@ -144,7 +144,7 @@ export class CoreClientProvider {
await this.updateIndexes(client); // TODO: this should run without the 3rd party URLs
await this.initInstance(client);
console.info(
`Downloaded the primary packages indexes, and successfully initialized the core gRPC client.`
`Downloaded the primary package indexes, and successfully initialized the core gRPC client.`
);
} else {
console.error(

View File

@@ -63,7 +63,7 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService {
} else {
if (!!buildPath && currentBuildPath !== buildPath) {
throw new Error(
`The CLI has already provided a build path: <${buildPath}>, and IDE2 received a new build path value: <${currentBuildPath}>.`
`The CLI has already provided a build path: <${buildPath}>, and IDE received a new build path value: <${currentBuildPath}>.`
);
}
}