diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/types.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/types.rst b/docs/types.rst index e042a98c..9e7d9b4a 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -624,6 +624,9 @@ It is possible to mark mappings ``public`` and have Solidity create an accessor. The ``_KeyType`` will become a required parameter for the accessor and it will return ``_ValueType``. +The ``_ValueType`` can be a mapping too. The accessor will have one parameter +for each ``_KeyType``, recursively. + :: pragma solidity ^0.4.0; |