Browse Source

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

Gal Bracha 7 years ago
parent
commit
7a61371b19
1 changed files with 2 additions and 2 deletions
  1. 2 2
      contracts/token/ERC20/BasicToken.sol

+ 2 - 2
contracts/token/ERC20/BasicToken.sol

@@ -17,14 +17,14 @@ contract BasicToken is ERC20Basic {
   uint256 totalSupply_;
 
   /**
-  * @dev total number of tokens in existence
+  * @dev Total number of tokens in existence
   */
   function totalSupply() public view returns (uint256) {
     return totalSupply_;
   }
 
   /**
-  * @dev transfer token for a specified address
+  * @dev Transfer token for a specified address
   * @param _to The address to transfer to.
   * @param _value The amount to be transferred.
   */