diff --git a/contracts/math/SafeMath.sol b/contracts/math/SafeMath.sol index d490dbe79..027379b3a 100644 --- a/contracts/math/SafeMath.sol +++ b/contracts/math/SafeMath.sol @@ -30,7 +30,7 @@ library SafeMath { } /** - * @dev Substracts two numbers, throws if subtrahend is greater than minuend. + * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a);