diff options
author | chriseth <chris@ethereum.org> | 2017-01-26 20:56:50 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2017-01-26 20:58:24 +0800 |
commit | f610ba77a493f8a6f270c72222d34eedfb183722 (patch) | |
tree | 6babefabb0475f8d15741324097881ddbf62f3e4 /docs | |
parent | 87f744ae5e91353f3608f0f5b8c271918b198989 (diff) | |
download | dexon-solidity-f610ba77a493f8a6f270c72222d34eedfb183722.tar.gz dexon-solidity-f610ba77a493f8a6f270c72222d34eedfb183722.tar.zst dexon-solidity-f610ba77a493f8a6f270c72222d34eedfb183722.zip |
Simplify length rule.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/types.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/types.rst b/docs/types.rst index cb14c8ac..3fb1db95 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -180,8 +180,8 @@ Address Literals Hexadecimal literals that pass the address checksum test, for example ``0xdCad3a6d3569DF655070DEd06cb7A1b2Ccd1D3AF`` are of ``address`` type. -Hexadecimal literals that are 20 bytes long (differ from that in at -most one hexadecimal digit) but do not pass the checksum test produce +Hexadecimal literals that are between 39 and 41 digits +long and do not pass the checksum test produce a warning and are treated as regular rational number literals. .. index:: literal, literal;rational |