diff --git a/lib/rules/best-practises/explicit-types.js b/lib/rules/best-practises/explicit-types.js index cd4dae45..217132c2 100644 --- a/lib/rules/best-practises/explicit-types.js +++ b/lib/rules/best-practises/explicit-types.js @@ -185,7 +185,7 @@ class ExplicitTypesChecker extends BaseChecker { // previous script searches all json and if two uint/uint256/ufixed/etc are in the same line // it will return two set of range values // this is to remove the first one if it's already been corrected - // and to push it to the array to store the corrected ones + // and to push it to the array to store the corrected ones if (alreadyFixedRanges.includes(range[0])) { range.shift() }