aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-11-17 00:44:23 +0800
committerGitHub <noreply@github.com>2017-11-17 00:44:23 +0800
commit2927ce0bd43e7d6aa3ba8e13bd123225adf1c7e8 (patch)
tree6b17c22fd1cea76bb28706f23c4480a0ccb62e73
parent58e452d14dd3d2caa1d3edb7ff181c32820174e4 (diff)
parent15427dc8d393f4eb3cca8dec2257f8f2408bef22 (diff)
downloaddexon-solidity-2927ce0bd43e7d6aa3ba8e13bd123225adf1c7e8.tar.gz
dexon-solidity-2927ce0bd43e7d6aa3ba8e13bd123225adf1c7e8.tar.zst
dexon-solidity-2927ce0bd43e7d6aa3ba8e13bd123225adf1c7e8.zip
Merge pull request #3213 from chuacw/patch-1
Change phrase in type deduction
-rw-r--r--docs/types.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst
index 0be8255e..c716b95e 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -990,6 +990,6 @@ parameters or return parameters.
.. warning::
The type is only deduced from the first assignment, so
the loop in the following snippet is infinite, as ``i`` will have the type
- ``uint8`` and any value of this type is smaller than ``2000``.
+ ``uint8`` and the highest value of this type is smaller than ``2000``.
``for (var i = 0; i < 2000; i++) { ... }``