diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-30 03:36:50 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-30 03:36:50 +0800 |
commit | 8b488e3ee48cef2fd3218edf71d9af929a17081f (patch) | |
tree | 94f057ac31347232f126d3d266f8e1306b31f902 /docs/units-and-global-variables.rst | |
parent | 6a6976dc1922903e847b59ee57c09a86aeaa38f5 (diff) | |
download | dexon-solidity-8b488e3ee48cef2fd3218edf71d9af929a17081f.tar.gz dexon-solidity-8b488e3ee48cef2fd3218edf71d9af929a17081f.tar.zst dexon-solidity-8b488e3ee48cef2fd3218edf71d9af929a17081f.zip |
Fix typo
Diffstat (limited to 'docs/units-and-global-variables.rst')
-rw-r--r-- | docs/units-and-global-variables.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index 3b5d5802..3da3c547 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -109,7 +109,7 @@ This means that the following are all identical:: If padding is needed, explicit type conversions can be used: ``sha3("\x00\x12")`` is the same as ``sha3(uint16(0x12))``. -Note that constants will packed using the minimum number of bytes required to store them. +Note that constants will be packed using the minimum number of bytes required to store them. This means that, for example, ``sha3(0) == sha3(uint8(0))`` and ``sha3(0x12345678) == sha3(uint32(0x12345678))``. |