diff options
| author | chriseth <chris@ethereum.org> | 2018-11-23 16:54:27 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-23 16:54:27 +0800 |
| commit | bc5d152e860fdefd9792937b46af8e3eabce1dc1 (patch) | |
| tree | d44c943ee92ef1ca27ea2b634c2d33aeab187534 /docs | |
| parent | f1d02432a69b44b6bcf784892c332c9f47a829b3 (diff) | |
| download | dexon-solidity-bc5d152e860fdefd9792937b46af8e3eabce1dc1.tar dexon-solidity-bc5d152e860fdefd9792937b46af8e3eabce1dc1.tar.gz dexon-solidity-bc5d152e860fdefd9792937b46af8e3eabce1dc1.tar.bz2 dexon-solidity-bc5d152e860fdefd9792937b46af8e3eabce1dc1.tar.lz dexon-solidity-bc5d152e860fdefd9792937b46af8e3eabce1dc1.tar.xz dexon-solidity-bc5d152e860fdefd9792937b46af8e3eabce1dc1.tar.zst dexon-solidity-bc5d152e860fdefd9792937b46af8e3eabce1dc1.zip | |
Update docs/types.rst
Co-Authored-By: ChrisChinchilla <chriswhward@gmail.com>
Diffstat (limited to 'docs')
| -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 e01e2f77..cf123055 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -13,7 +13,7 @@ Solidity provides several elementary types which can be combined to form complex In addition, types can interact with each other in expressions containing operators. For a quick reference of the various operators, see :ref:`order`. -The concept of "undefined" or "null" values do not exist in Solidity. To handle any unexpected values, you should use the :ref:`revert function<assert-and-require>` to revert the whole transaction. +The concept of "undefined" or "null" values do not exist in Solidity. To handle any unexpected values, you should use the :ref:`revert function<assert-and-require>` to revert the whole transaction, or return a tuple with a second `bool` value denoting success. .. index:: ! value type, ! type;value |
