@@ -1113,7 +1113,7 @@ subtask(TASK_COMPILE_SOLIDITY_GET_COMPILATION_JOBS_FAILURE_REASONS)
11131113 compilationJobsCreationErrors : CompilationJobCreationError [ ] ;
11141114 } ) : Promise < string > => {
11151115 const noCompatibleSolc : CompilationJobCreationError [ ] = [ ] ;
1116- const incompatibleOverridenSolc : CompilationJobCreationError [ ] = [ ] ;
1116+ const incompatibleOverriddenSolc : CompilationJobCreationError [ ] = [ ] ;
11171117 const directlyImportsIncompatibleFile : CompilationJobCreationError [ ] = [ ] ;
11181118 const indirectlyImportsIncompatibleFile : CompilationJobCreationError [ ] =
11191119 [ ] ;
@@ -1127,9 +1127,9 @@ subtask(TASK_COMPILE_SOLIDITY_GET_COMPILATION_JOBS_FAILURE_REASONS)
11271127 noCompatibleSolc . push ( error ) ;
11281128 } else if (
11291129 error . reason ===
1130- CompilationJobCreationErrorReason . INCOMPATIBLE_OVERRIDEN_SOLC_VERSION
1130+ CompilationJobCreationErrorReason . INCOMPATIBLE_OVERRIDDEN_SOLC_VERSION
11311131 ) {
1132- incompatibleOverridenSolc . push ( error ) ;
1132+ incompatibleOverriddenSolc . push ( error ) ;
11331133 } else if (
11341134 error . reason ===
11351135 CompilationJobCreationErrorReason . DIRECTLY_IMPORTS_INCOMPATIBLE_FILE
@@ -1151,12 +1151,12 @@ subtask(TASK_COMPILE_SOLIDITY_GET_COMPILATION_JOBS_FAILURE_REASONS)
11511151 }
11521152
11531153 let errorMessage = "" ;
1154- if ( incompatibleOverridenSolc . length > 0 ) {
1154+ if ( incompatibleOverriddenSolc . length > 0 ) {
11551155 errorMessage += `The compiler version for the following files is fixed through an override in your config file to a version that is incompatible with their Solidity version pragmas.
11561156
11571157` ;
11581158
1159- for ( const error of incompatibleOverridenSolc ) {
1159+ for ( const error of incompatibleOverriddenSolc ) {
11601160 const { sourceName } = error . file ;
11611161 const { versionPragmas } = error . file . content ;
11621162 const versionsRange = versionPragmas . join ( " " ) ;
0 commit comments