Commit a544f151 by Manuel Aráoz Committed by GitHub

Merge pull request #133 from jtakalai/patch-1

Fix typos
parents 2de7fec6 67ad6abd
...@@ -13,12 +13,12 @@ safeMul(uint a, uint b) internal returns (uint) ...@@ -13,12 +13,12 @@ safeMul(uint a, uint b) internal returns (uint)
Multiplies two unisgned integers. Asserts that dividing the product by the non-zero multiplicand results in the multiplier. Multiplies two unisgned integers. Asserts that dividing the product by the non-zero multiplicand results in the multiplier.
safeSub(uint a, unit b) internal returns (uint) safeSub(uint a, uint b) internal returns (uint)
""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""
Checks that b is not greater than a before subtracting. Checks that b is not greater than a before subtracting.
safeAdd(unit a, unit b) internal returns (uint) safeAdd(uint a, uint b) internal returns (uint)
""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""
Checks that the result is greater than both a and b. Checks that the result is greater than both a and b.
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment