From 7a61371b19ff836e625a4087cf13c556691a7e34 Mon Sep 17 00:00:00 2001 From: Gal Bracha Date: Sat, 9 Jun 2018 01:30:48 +0200 Subject: [PATCH] Updated documentation Uppercasing function name for ERC02 basic token (#720) --- contracts/token/ERC20/BasicToken.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/token/ERC20/BasicToken.sol b/contracts/token/ERC20/BasicToken.sol index 1042c2f17..c2f7d5935 100644 --- a/contracts/token/ERC20/BasicToken.sol +++ b/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. */