From a029b0ba67dff61f203d1ab1234aa0a12c42f3f3 Mon Sep 17 00:00:00 2001 From: John Adler Date: Sat, 14 Aug 2021 14:31:06 -0400 Subject: [PATCH] Fix typo Fix missing `s`. --- docs/types/value-types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types/value-types.rst b/docs/types/value-types.rst index 008d31683..776cddf19 100644 --- a/docs/types/value-types.rst +++ b/docs/types/value-types.rst @@ -108,7 +108,7 @@ Division Since the type of the result of an operation is always the type of one of the operands, division on integers always results in an integer. -In Solidity, division rounds towards zero. This mean that ``int256(-5) / int256(2) == int256(-2)``. +In Solidity, division rounds towards zero. This means that ``int256(-5) / int256(2) == int256(-2)``. Note that in contrast, division on :ref:`literals` results in fractional values of arbitrary precision.