@0x/contracts-exchange: Fix typos in comments.

This commit is contained in:
Lawrence Forman
2019-08-02 21:22:15 -04:00
parent 7eedfc201a
commit 7002dc63bd

View File

@@ -33,7 +33,7 @@ describe('Reference functions', () => {
}
it('reverts if computing `fillResults.makerAssetFilledAmount` overflows', () => {
// All values need to be large to ensure we don't trigger a RondingError.
// All values need to be large to ensure we don't trigger a RoundingError.
const order = makeOrder({
makerAssetAmount: MAX_UINT256_ROOT.times(2),
takerAssetAmount: MAX_UINT256_ROOT,
@@ -48,7 +48,7 @@ describe('Reference functions', () => {
});
it('reverts if computing `fillResults.makerFeePaid` overflows', () => {
// All values need to be large to ensure we don't trigger a RondingError.
// All values need to be large to ensure we don't trigger a RoundingError.
const order = makeOrder({
makerAssetAmount: MAX_UINT256_ROOT,
takerAssetAmount: MAX_UINT256_ROOT,
@@ -69,7 +69,7 @@ describe('Reference functions', () => {
});
it('reverts if computing `fillResults.takerFeePaid` overflows', () => {
// All values need to be large to ensure we don't trigger a RondingError.
// All values need to be large to ensure we don't trigger a RoundingError.
const order = makeOrder({
makerAssetAmount: MAX_UINT256_ROOT,
takerAssetAmount: MAX_UINT256_ROOT,