diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-02 02:18:46 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-02 02:18:46 +0800 |
commit | ac5fd64c238a88493d24a33cc7bc20313799385f (patch) | |
tree | d2f6bf79ade861e773e4f211f03cd9044fa70bc2 /docs | |
parent | 88bce877c467982be049b4f6515974cec3ebd89e (diff) | |
download | dexon-solidity-ac5fd64c238a88493d24a33cc7bc20313799385f.tar.gz dexon-solidity-ac5fd64c238a88493d24a33cc7bc20313799385f.tar.zst dexon-solidity-ac5fd64c238a88493d24a33cc7bc20313799385f.zip |
Mention that different Unicode codepoint can look the same
Diffstat (limited to 'docs')
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index 33a8ad10..fd12e97b 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -61,6 +61,10 @@ so that only you can alter the number. All identifiers (contract names, function names and variable names) are restricted to the ASCII character set. It is possible to store UTF-8 encoded data in string variables. +.. warning:: + Be careful with using Unicode text as similarly looking (or even identical) can have different + code points and as such will be encoded as a different byte array. + .. index:: ! subcurrency Subcurrency Example |