Skip to content

Commit d9a515c

Browse files
authored
Merge pull request #5075 from redismongo/main
chore: fix some typos
2 parents d3068e7 + 05f3a64 commit d9a515c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/hardhat-core/src/builtin-tasks/compile.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ subtask(TASK_COMPILE_SOLIDITY_GET_COMPILATION_JOBS)
345345
* Receives a list of compilation jobs and returns a new list where some of
346346
* the compilation jobs might've been removed.
347347
*
348-
* This task can be overriden to change the way the cache is used, or to use
348+
* This task can be overridden to change the way the cache is used, or to use
349349
* a different approach to filtering out compilation jobs.
350350
*/
351351
subtask(TASK_COMPILE_SOLIDITY_FILTER_COMPILATION_JOBS)
@@ -1152,7 +1152,7 @@ subtask(TASK_COMPILE_SOLIDITY_GET_COMPILATION_JOBS_FAILURE_REASONS)
11521152
const { versionPragmas } = error.file.content;
11531153
const versionsRange = versionPragmas.join(" ");
11541154

1155-
log(`File ${sourceName} has an incompatible overriden compiler`);
1155+
log(`File ${sourceName} has an incompatible overridden compiler`);
11561156

11571157
errorMessage += ` * ${sourceName} (${versionsRange})\n`;
11581158
}

packages/hardhat-core/src/internal/core/tasks/task-definitions.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ export class OverriddenTaskDefinition implements TaskDefinition {
613613
}
614614

615615
/**
616-
* Retrieves, if defined, the description of the overriden task,
616+
* Retrieves, if defined, the description of the overridden task,
617617
* otherwise retrieves the description of the parent task.
618618
*/
619619
public get description() {
@@ -625,7 +625,7 @@ export class OverriddenTaskDefinition implements TaskDefinition {
625625
}
626626

627627
/**
628-
* Retrieves, if defined, the action of the overriden task,
628+
* Retrieves, if defined, the action of the overridden task,
629629
* otherwise retrieves the action of the parent task.
630630
*/
631631
public get action() {

0 commit comments

Comments
 (0)