Skip to content

Commit

Permalink
fix typo in divide before multiply
Browse files Browse the repository at this point in the history
  • Loading branch information
0xalpharush authored Nov 3, 2022
1 parent a41f867 commit f9aca49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slither/detectors/statements/divide_before_multiply.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class DivideBeforeMultiply(AbstractDetector):
WIKI = "https://github.com/crytic/slither/wiki/Detector-Documentation#divide-before-multiply"

WIKI_TITLE = "Divide before multiply"
WIKI_DESCRIPTION = """Solidity integer division might truncate. As a result, performing multiplication before division can sometimes avoid loss of precision."""
WIKI_DESCRIPTION = """Solidity integer division might truncate. Thus, performing multiplication before divison might lead to loss of precision."""

# region wiki_exploit_scenario
WIKI_EXPLOIT_SCENARIO = """
Expand Down

0 comments on commit f9aca49

Please sign in to comment.