Skip to content

Commit 3ec6264

Browse files
committed
Fix typos in log messages
Several of the log messages contained minor typos.
1 parent 1281ad1 commit 3ec6264

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: arduino-ide-extension/src/browser/contributions/compiler-errors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ export class CompilerErrors
743743
}
744744
console.warn(
745745
'compiler-errors',
746-
`could not found editor widget for URI: ${uri}`
746+
`could not find editor widget for URI: ${uri}`
747747
);
748748
return undefined;
749749
}

Diff for: arduino-ide-extension/src/common/protocol/sketches-service-client-impl.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export class SketchesServiceClientImpl
9797
);
9898
if (!this.sketches.has(toAdd.uri)) {
9999
console.log(
100-
`New sketch '${toAdd.name}' was crated in sketchbook '${sketchDirUri}'.`
100+
`New sketch '${toAdd.name}' was created in sketchbook '${sketchDirUri}'.`
101101
);
102102
this.sketches.set(toAdd.uri, toAdd);
103103
this.fireSoon(toAdd, 'created');

Diff for: arduino-ide-extension/src/node/core-client-provider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export class CoreClientProvider {
144144
await this.updateIndexes(client); // TODO: this should run without the 3rd party URLs
145145
await this.initInstance(client);
146146
console.info(
147-
`Downloaded the primary packages indexes, and successfully initialized the core gRPC client.`
147+
`Downloaded the primary package indexes, and successfully initialized the core gRPC client.`
148148
);
149149
} else {
150150
console.error(

Diff for: arduino-ide-extension/src/node/core-service-impl.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService {
6363
} else {
6464
if (!!buildPath && currentBuildPath !== buildPath) {
6565
throw new Error(
66-
`The CLI has already provided a build path: <${buildPath}>, and IDE2 received a new build path value: <${currentBuildPath}>.`
66+
`The CLI has already provided a build path: <${buildPath}>, and IDE received a new build path value: <${currentBuildPath}>.`
6767
);
6868
}
6969
}

Diff for: scripts/i18n/transifex-pull.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const getTranslationDownloadStatus = async (language, downloadRequestId) => {
9999
const { organization, project, resource } = await transifex.credentials();
100100
const translationsDirectory = process.argv[2];
101101
if (!translationsDirectory) {
102-
shell.echo('Traslations directory not specified');
102+
shell.echo('Translations directory not specified');
103103
shell.exit(1);
104104
}
105105

0 commit comments

Comments
 (0)