Commit 7a61371b by Gal Bracha Committed by Matt Condon

Updated documentation Uppercasing function name for ERC02 basic token (#720)

parent 259b9da3
...@@ -17,14 +17,14 @@ contract BasicToken is ERC20Basic { ...@@ -17,14 +17,14 @@ contract BasicToken is ERC20Basic {
uint256 totalSupply_; uint256 totalSupply_;
/** /**
* @dev total number of tokens in existence * @dev Total number of tokens in existence
*/ */
function totalSupply() public view returns (uint256) { function totalSupply() public view returns (uint256) {
return totalSupply_; return totalSupply_;
} }
/** /**
* @dev transfer token for a specified address * @dev Transfer token for a specified address
* @param _to The address to transfer to. * @param _to The address to transfer to.
* @param _value The amount to be transferred. * @param _value The amount to be transferred.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment