diff options
author | James Ray <james.ray0001@gmail.com> | 2017-06-12 15:36:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-12 15:36:51 +0800 |
commit | 2dd23cec7a9ac9a6aca2de28d442dac9a1435c8e (patch) | |
tree | 1104aac5721be3059c33bf562b114ce05d0394ba /docs/types.rst | |
parent | fe3b46554af07b35f84ca48264830f8c27d4e52e (diff) | |
download | dexon-solidity-2dd23cec7a9ac9a6aca2de28d442dac9a1435c8e.tar.gz dexon-solidity-2dd23cec7a9ac9a6aca2de28d442dac9a1435c8e.tar.zst dexon-solidity-2dd23cec7a9ac9a6aca2de28d442dac9a1435c8e.zip |
Create types.rst
Note that the following is not a pair of dynamic arrays but a dynamic array of pairs (i.e. of fixed size arrays of length two).
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 c400aecb..9abbd464 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -655,7 +655,7 @@ Members contract ArrayContract { uint[2**20] m_aLotOfIntegers; - // Note that the following is not a pair of arrays but an array of pairs. + // Note that the following is not a pair of dynamic arrays but a dynamic array of pairs (i.e. of fixed size arrays of length two). bool[2][] m_pairsOfFlags; // newPairs is stored in memory - the default for function arguments |