aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-06-12 23:21:28 +0800
committerGitHub <noreply@github.com>2017-06-12 23:21:28 +0800
commite48a1a3851f131a328524969203df822369d22c4 (patch)
tree4b23b12f1c901f875226c3daba962cd12d072428
parent43d3d4eba468b988d2e43b1c38b94a17d55f502d (diff)
parent39a7b63897016a9cf6c9bb810b98d5847631aba8 (diff)
downloaddexon-solidity-e48a1a3851f131a328524969203df822369d22c4.tar.gz
dexon-solidity-e48a1a3851f131a328524969203df822369d22c4.tar.zst
dexon-solidity-e48a1a3851f131a328524969203df822369d22c4.zip
Merge pull request #2372 from jamesray1/patch-13
Create types.rst
-rw-r--r--docs/types.rst3
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