From 73fa244ee845ff7b857c737aacd7643ae274617b Mon Sep 17 00:00:00 2001 From: alpharush <0xalpharush@protonmail.com> Date: Thu, 28 Mar 2024 23:06:44 -0500 Subject: [PATCH] update too-many-digits help --- slither/detectors/statements/too_many_digits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slither/detectors/statements/too_many_digits.py b/slither/detectors/statements/too_many_digits.py index a5e09a34c..4d50707d6 100644 --- a/slither/detectors/statements/too_many_digits.py +++ b/slither/detectors/statements/too_many_digits.py @@ -40,7 +40,7 @@ class TooManyDigits(AbstractDetector): # region wiki_description WIKI_DESCRIPTION = """ -Literals with many digits are difficult to read and review. +Literals with many digits are difficult to read and review. Use scientific notation or suffixes to make the code more readable. """ # endregion wiki_description