diff options
author | chriseth <chris@ethereum.org> | 2017-06-27 22:32:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-27 22:32:48 +0800 |
commit | 708d17d13fce9095178962c2ebc3fa17303b72f3 (patch) | |
tree | 774625d27d8f372e10132760248b349016247f94 /docs | |
parent | 36044c8c95890bfc25a199510e32a0481e8082d0 (diff) | |
parent | 70fd5c17704119a3f52aba5c67eda96c2a222d2d (diff) | |
download | dexon-solidity-708d17d13fce9095178962c2ebc3fa17303b72f3.tar dexon-solidity-708d17d13fce9095178962c2ebc3fa17303b72f3.tar.gz dexon-solidity-708d17d13fce9095178962c2ebc3fa17303b72f3.tar.bz2 dexon-solidity-708d17d13fce9095178962c2ebc3fa17303b72f3.tar.lz dexon-solidity-708d17d13fce9095178962c2ebc3fa17303b72f3.tar.xz dexon-solidity-708d17d13fce9095178962c2ebc3fa17303b72f3.tar.zst dexon-solidity-708d17d13fce9095178962c2ebc3fa17303b72f3.zip |
Merge pull request #2464 from federicobond/deprecate-function-type-names
Warn deprecated usage of parameter names in function types
Diffstat (limited to 'docs')
-rw-r--r-- | docs/types.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/types.rst b/docs/types.rst index 0a0bffea..dfab79c8 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -387,10 +387,10 @@ Example that shows how to use internal function types:: } function reduce( uint[] memory self, - function (uint x, uint y) returns (uint) f + function (uint, uint) returns (uint) f ) internal - returns (uint r) + returns (uint) { r = self[0]; for (uint i = 1; i < self.length; i++) { |