Remove named return

Named returns are not explained in this introduction; they also provide little value in these examples.
This commit is contained in:
ethers 2016-11-12 20:02:43 -08:00 committed by GitHub
parent 7820f80192
commit 04eb6e85f2

View File

@ -25,7 +25,7 @@ Storage
storedData = x; storedData = x;
} }
function get() constant returns (uint retVal) { function get() constant returns (uint) {
return storedData; return storedData;
} }
} }
@ -136,7 +136,7 @@ like this one. The accessor function created by the ``public`` keyword
is a bit more complex in this case. It roughly looks like the is a bit more complex in this case. It roughly looks like the
following:: following::
function balances(address _account) returns (uint balance) { function balances(address _account) returns (uint) {
return balances[_account]; return balances[_account];
} }