From 507f9e92daa3752ff00461c95e3cba715235b2ff Mon Sep 17 00:00:00 2001 From: dbale-altoros Date: Wed, 28 Feb 2024 18:03:27 -0300 Subject: [PATCH] add: explanation to script --- lib/rules/best-practises/explicit-types.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() }