From a66f5f8f033789f501e163ee3b2f185b6494911a Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Sun, 2 Jul 2017 13:00:23 -0300 Subject: [PATCH] format SafeMath documentation as NatSpec --- contracts/{ => math}/SafeMath.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename contracts/{ => math}/SafeMath.sol (93%) diff --git a/contracts/SafeMath.sol b/contracts/math/SafeMath.sol similarity index 93% rename from contracts/SafeMath.sol rename to contracts/math/SafeMath.sol index 76e46b784..4f6861c20 100644 --- a/contracts/SafeMath.sol +++ b/contracts/math/SafeMath.sol @@ -2,7 +2,8 @@ pragma solidity ^0.4.11; /** - * Math operations with safety checks + * @title SafeMath + * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal returns (uint256) {