diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-08-05 00:11:03 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2016-08-05 00:35:34 +0800 |
commit | fefe9bdee76d5acff8b14da8c5b60f16b7f7a83c (patch) | |
tree | e068b8bbf3da3affd53ff6a868dbff5b9984561a /docs/types.rst | |
parent | 6db12c4f882411293da71c5951ba7088a9712c13 (diff) | |
download | dexon-solidity-fefe9bdee76d5acff8b14da8c5b60f16b7f7a83c.tar.gz dexon-solidity-fefe9bdee76d5acff8b14da8c5b60f16b7f7a83c.tar.zst dexon-solidity-fefe9bdee76d5acff8b14da8c5b60f16b7f7a83c.zip |
Fix String Literals documentation about implicit conversions
Diffstat (limited to 'docs/types.rst')
-rw-r--r-- | docs/types.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst index 35f0e247..6e01fce2 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -214,7 +214,7 @@ a non-rational number). String Literals --------------- -String Literals are written with double quotes (``"abc"``). As with integer literals, their type can vary, but they are implicitly convertible to ``bytes`` if they fit, to ``bytes`` and to ``string``. +String Literals are written with double quotes (``"abc"``). As with integer literals, their type can vary, but they are implicitly convertible to ``bytes1``, ..., ``bytes32`` if they fit, to ``bytes`` and to ``string``. .. index:: enum |