Skip to content

Commit bf4d40d

Browse files
authored
Fix pragma-consistency.js's comment (#5381)
1 parent 73b46e3 commit bf4d40d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/checks/pragma-consistency.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ for (const artifact of artifacts) {
3131
const minVersion = semver.minVersion(pragma[source]);
3232
// loop over all imports in source
3333
for (const { absolutePath } of findAll('ImportDirective', solcOutput.sources[source].ast)) {
34-
// So files that only import without declaring anything cause issues, because they don't shop in in "pragma"
34+
// So files that only import without declaring anything cause issues, because they don't shop in "pragma"
3535
if (!pragma[absolutePath]) continue;
3636
// Check that the minVersion for source satisfies the requirements of the imported files
3737
if (!semver.satisfies(minVersion, pragma[absolutePath])) {

0 commit comments

Comments
 (0)