aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sanders <davesque@gmail.com>2018-04-25 07:55:39 +0800
committerDavid Sanders <davesque@gmail.com>2018-04-25 07:55:39 +0800
commit287ec8addbe240aeef933a9b921c5c001c830c6a (patch)
tree696600f495ce4e3cb90873fec6efe47bf53358b2
parent3d89d8b126b7a3c9147dc026d877e9fcc23c633f (diff)
downloaddexon-solidity-287ec8addbe240aeef933a9b921c5c001c830c6a.tar
dexon-solidity-287ec8addbe240aeef933a9b921c5c001c830c6a.tar.gz
dexon-solidity-287ec8addbe240aeef933a9b921c5c001c830c6a.tar.bz2
dexon-solidity-287ec8addbe240aeef933a9b921c5c001c830c6a.tar.lz
dexon-solidity-287ec8addbe240aeef933a9b921c5c001c830c6a.tar.xz
dexon-solidity-287ec8addbe240aeef933a9b921c5c001c830c6a.tar.zst
dexon-solidity-287ec8addbe240aeef933a9b921c5c001c830c6a.zip
Add note about zero-tuples
-rw-r--r--docs/abi-spec.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst
index 98301fdc..b39bfda8 100644
--- a/docs/abi-spec.rst
+++ b/docs/abi-spec.rst
@@ -77,7 +77,7 @@ of them inside parentheses, separated by commas:
- ``(T1,T2,...,Tn)``: tuple consisting of the types ``T1``, ..., ``Tn``, ``n >= 0``
-It is possible to form tuples of tuples, arrays of tuples and so on.
+It is possible to form tuples of tuples, arrays of tuples and so on. It is also possible to form zero-tuples (where ``n == 0``).
.. note::
Solidity supports all the types presented above with the same names with the exception of tuples. The ABI tuple type is utilised for encoding Solidity ``structs``.