From e7e8d8eac1e512acd25e0f55a43799edec997eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Venturo?= Date: Fri, 7 Sep 2018 10:00:37 -0300 Subject: [PATCH] Fixed Solium warnings. (#1301) --- contracts/token/ERC20/ERC20Detailed.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contracts/token/ERC20/ERC20Detailed.sol b/contracts/token/ERC20/ERC20Detailed.sol index b6d50fca2..6becdee10 100644 --- a/contracts/token/ERC20/ERC20Detailed.sol +++ b/contracts/token/ERC20/ERC20Detailed.sol @@ -26,12 +26,14 @@ contract ERC20Detailed is IERC20 { function name() public view returns(string) { return name_; } + /** * @return the symbol of the token. */ function symbol() public view returns(string) { return symbol_; } + /** * @return the number of decimals of the token. */