aboutsummaryrefslogtreecommitdiffstats
path: root/docs/miscellaneous.rst
diff options
context:
space:
mode:
authorYoichi Hirai <i@yoichihirai.com>2016-11-25 17:03:39 +0800
committerYoichi Hirai <i@yoichihirai.com>2016-12-01 00:42:16 +0800
commit5d7a1fda39d29329df675985b0d3e50548348b72 (patch)
treeeb6753c5fe3373034e2ea2abf95884fccd8d6ce1 /docs/miscellaneous.rst
parent547deec4be55fc10b44de9ff92bb2d598d5b04f5 (diff)
downloaddexon-solidity-5d7a1fda39d29329df675985b0d3e50548348b72.tar.gz
dexon-solidity-5d7a1fda39d29329df675985b0d3e50548348b72.tar.zst
dexon-solidity-5d7a1fda39d29329df675985b0d3e50548348b72.zip
docs: remove the word overflow when we are talking about invalid values
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r--docs/miscellaneous.rst44
1 files changed, 22 insertions, 22 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst
index 251d77d2..6e1b575a 100644
--- a/docs/miscellaneous.rst
+++ b/docs/miscellaneous.rst
@@ -114,28 +114,28 @@ the boolean values before they are used as the condition for
In addition to the design principle above, the Solidity compiler
cleans input data when it is loaded onto the stack.
-Different types have different rules for cleaning up overflows:
-
-+---------------+---------------+------------------+
-|Type |Cleaned Form |Overflow Means |
-+===============+===============+==================+
-|enum of n |0 until n - 1 |exception |
-|members | | |
-+---------------+---------------+------------------+
-|bool |0 or 1 |zero or nonzero |
-+---------------+---------------+------------------+
-|signed integers|sign-extended |currently silently|
-| |word |wraps; in the |
-| | |future exceptions |
-| | |will be thrown |
-| | | |
-| | | |
-+---------------+---------------+------------------+
-|unsigned |higher bits |currently silently|
-|integers |zeroed |wraps; in the |
-| | |future exceptions |
-| | |will be thrown |
-+---------------+---------------+------------------+
+Different types have different rules for cleaning up invalid values:
+
++---------------+---------------+-------------------+
+|Type |Valid Valies |Invalid Values Mean|
++===============+===============+===================+
+|enum of n |0 until n - 1 |exception |
+|members | | |
++---------------+---------------+-------------------+
+|bool |0 or 1 |1 |
++---------------+---------------+-------------------+
+|signed integers|sign-extended |currently silently |
+| |word |wraps; in the |
+| | |future exceptions |
+| | |will be thrown |
+| | | |
+| | | |
++---------------+---------------+-------------------+
+|unsigned |higher bits |currently silently |
+|integers |zeroed |wraps; in the |
+| | |future exceptions |
+| | |will be thrown |
++---------------+---------------+-------------------+
*****************