aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-12-24 05:18:01 +0800
committerLeonardo Alt <leo@ethereum.org>2018-12-24 05:18:01 +0800
commit444464f8cfd54bb03d608941e8f50c593997f106 (patch)
tree9bbf715f68dfe7fa0be6b311093423548ba7ad6d /docs
parent8a9e01275707a95aa731e8d9735dc2957f34a8e7 (diff)
downloaddexon-solidity-444464f8cfd54bb03d608941e8f50c593997f106.tar.gz
dexon-solidity-444464f8cfd54bb03d608941e8f50c593997f106.tar.zst
dexon-solidity-444464f8cfd54bb03d608941e8f50c593997f106.zip
Fix examples in type conversion docs
Diffstat (limited to 'docs')
-rw-r--r--docs/types.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/types.rst b/docs/types.rst
index 08fbd7b3..4eb1f926 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -1289,7 +1289,7 @@ cut off::
uint16 b = uint16(a); // b will be 0x5678 now
If an integer is explicitly converted to a larger type, it is padded on the left (i.e. at the higher order end).
-The result of the conversion will compare equal to the original integer.
+The result of the conversion will compare equal to the original integer::
uint16 a = 0x1234;
uint32 b = uint32(a); // b will be 0x00001234 now
@@ -1321,7 +1321,7 @@ rules explicit::
uint32 b = uint16(a); // b will be 0x00001234
uint32 c = uint32(bytes4(a)); // c will be 0x12340000
uint8 d = uint8(uint16(a)); // d will be 0x34
- uint8 e = uint8(bytes1(a)); // d will be 0x12
+ uint8 e = uint8(bytes1(a)); // e will be 0x12
.. _types-conversion-literals: