diff options
author | Erik Kundt <bitshift@posteo.org> | 2018-11-24 00:16:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-24 00:16:18 +0800 |
commit | f57ef36c0e5fdefcb0893c51d466f6b4bb674797 (patch) | |
tree | 21ac0095fe8f9db70d38aaaa382e8794e7cf7fb8 /docs | |
parent | 9c1bdb74b97ea46c621dca430cd401589f800214 (diff) | |
download | dexon-solidity-f57ef36c0e5fdefcb0893c51d466f6b4bb674797.tar.gz dexon-solidity-f57ef36c0e5fdefcb0893c51d466f6b4bb674797.tar.zst dexon-solidity-f57ef36c0e5fdefcb0893c51d466f6b4bb674797.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 5a0acfbb..39238f8f 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, but newly +The concept of "undefined" or "null" values does not exist in Solidity, but newly declared variables always have a :ref:`default value<default-value>` dependent on its type. 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. |