Skip to content

Commit

Permalink
Fix typos in log messages
Browse files Browse the repository at this point in the history
Several of the log messages contained minor typos.
  • Loading branch information
per1234 committed Aug 21, 2022
1 parent 1281ad1 commit 3ec6264
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion arduino-ide-extension/src/node/core-client-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion arduino-ide-extension/src/node/core-service-impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}>.`
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/i18n/transifex-pull.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const getTranslationDownloadStatus = async (language, downloadRequestId) => {
const { organization, project, resource } = await transifex.credentials();
const translationsDirectory = process.argv[2];
if (!translationsDirectory) {
shell.echo('Traslations directory not specified');
shell.echo('Translations directory not specified');
shell.exit(1);
}

Expand Down

0 comments on commit 3ec6264

Please sign in to comment.