Skip to content

Commit

Permalink
Wrong function documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ggviana committed Aug 4, 2021
1 parent d0ae2a4 commit c714db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/amm/NormalDistribution.sol
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ contract NormalDistribution is INormalDistribution, Ownable {
}

/**
* @dev Returns the module of a number.
* @dev Returns the absolute value of a number.
*/
function _abs(int256 a) internal pure returns (uint256) {
return a < 0 ? uint256(-a) : uint256(a);
Expand Down

0 comments on commit c714db1

Please sign in to comment.