We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73b46e3 commit bf4d40dCopy full SHA for bf4d40d
scripts/checks/pragma-consistency.js
@@ -31,7 +31,7 @@ for (const artifact of artifacts) {
31
const minVersion = semver.minVersion(pragma[source]);
32
// loop over all imports in source
33
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"
+ // So files that only import without declaring anything cause issues, because they don't shop in "pragma"
35
if (!pragma[absolutePath]) continue;
36
// Check that the minVersion for source satisfies the requirements of the imported files
37
if (!semver.satisfies(minVersion, pragma[absolutePath])) {
0 commit comments