diff options
author | chriseth <chris@ethereum.org> | 2017-06-12 23:21:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-12 23:21:28 +0800 |
commit | e48a1a3851f131a328524969203df822369d22c4 (patch) | |
tree | 4b23b12f1c901f875226c3daba962cd12d072428 /docs | |
parent | 43d3d4eba468b988d2e43b1c38b94a17d55f502d (diff) | |
parent | 39a7b63897016a9cf6c9bb810b98d5847631aba8 (diff) | |
download | dexon-solidity-e48a1a3851f131a328524969203df822369d22c4.tar.gz dexon-solidity-e48a1a3851f131a328524969203df822369d22c4.tar.zst dexon-solidity-e48a1a3851f131a328524969203df822369d22c4.zip |
Merge pull request #2372 from jamesray1/patch-13
Create types.rst
Diffstat (limited to 'docs')
-rw-r--r-- | docs/types.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst index 9365d3b0..b2175262 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -655,7 +655,8 @@ 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 |