diff options
author | Yet another codejunkie <2772295+kn1g@users.noreply.github.com> | 2018-11-15 17:10:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 17:10:28 +0800 |
commit | caf44302e56208a5ee428d87b27fe647813886da (patch) | |
tree | 713919fbaee6c43059ee7a7e5cbc4ff366b7464f /docs/types.rst | |
parent | b6e2e4ad6b909500ed0f015d79927941f8a0de95 (diff) | |
download | dexon-solidity-caf44302e56208a5ee428d87b27fe647813886da.tar.gz dexon-solidity-caf44302e56208a5ee428d87b27fe647813886da.tar.zst dexon-solidity-caf44302e56208a5ee428d87b27fe647813886da.zip |
Fixed consistent use of `nameReg`
Fixed consistent use of `nameReg` instead of `namReg`
Diffstat (limited to 'docs/types.rst')
-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 04f8d808..020cb105 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -280,7 +280,7 @@ Example:: It is possible to adjust the supplied gas with the ``.gas()`` modifier:: - address(namReg).call.gas(1000000)(abi.encodeWithSignature("register(string)", "MyName")); + address(nameReg).call.gas(1000000)(abi.encodeWithSignature("register(string)", "MyName")); Similarly, the supplied Ether value can be controlled too:: |