diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-11 02:52:11 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-11 23:10:47 +0800 |
commit | 1634a79bd8ecfe2445bef7a9af26887aa638c15e (patch) | |
tree | ab6ddd598bba9b1685e1d4b52ef52e5a25637d89 /docs/types.rst | |
parent | 2a492f59c911b46e46b2c200e966e1cf95721aa0 (diff) | |
download | dexon-solidity-1634a79bd8ecfe2445bef7a9af26887aa638c15e.tar.gz dexon-solidity-1634a79bd8ecfe2445bef7a9af26887aa638c15e.tar.zst dexon-solidity-1634a79bd8ecfe2445bef7a9af26887aa638c15e.zip |
Correct all UTF-8 spellings
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 486e8b82..12a35aaf 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -147,7 +147,7 @@ Dynamically-sized byte array ``bytes``: Dynamically-sized byte array, see :ref:`arrays`. Not a value-type! ``string``: - Dynamically-sized UTF8-encoded string, see :ref:`arrays`. Not a value-type! + Dynamically-sized UTF-8-encoded string, see :ref:`arrays`. Not a value-type! As a rule of thumb, use ``bytes`` for arbitrary-length raw byte data and ``string`` for arbitrary-length string (UTF-8) data. If you can limit the length to a certain |