Change phrase in type deduction

updated phrase in type deduction from "any value of this type" to "the highest value of this type"
This commit is contained in:
Chua Chee Wee 2017-11-16 23:18:06 +08:00 committed by GitHub
parent 58e452d14d
commit 15427dc8d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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++) { ... }``