Browse Source

format SafeMath documentation as NatSpec

Francisco Giordano 8 years ago
parent
commit
a66f5f8f03
1 changed files with 2 additions and 1 deletions
  1. 2 1
      contracts/math/SafeMath.sol

+ 2 - 1
contracts/SafeMath.sol → 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) {