aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-01-17 23:22:47 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-01-17 23:22:47 +0800
commit278f68ae770b810960b761bd9eb7b57a24975253 (patch)
treeacc67e205d5613caa5a17a559d6c42d12bb37423 /packages/0x.js
parent771f65c8582c48095d812b49e58ee5563f3329a9 (diff)
downloaddexon-sol-tools-278f68ae770b810960b761bd9eb7b57a24975253.tar
dexon-sol-tools-278f68ae770b810960b761bd9eb7b57a24975253.tar.gz
dexon-sol-tools-278f68ae770b810960b761bd9eb7b57a24975253.tar.bz2
dexon-sol-tools-278f68ae770b810960b761bd9eb7b57a24975253.tar.lz
dexon-sol-tools-278f68ae770b810960b761bd9eb7b57a24975253.tar.xz
dexon-sol-tools-278f68ae770b810960b761bd9eb7b57a24975253.tar.zst
dexon-sol-tools-278f68ae770b810960b761bd9eb7b57a24975253.zip
Fix the typos
Diffstat (limited to 'packages/0x.js')
-rw-r--r--packages/0x.js/CHANGELOG.md4
-rw-r--r--packages/0x.js/test/exchange_wrapper_test.ts6
2 files changed, 5 insertions, 5 deletions
diff --git a/packages/0x.js/CHANGELOG.md b/packages/0x.js/CHANGELOG.md
index 150d57aaa..0a3b45513 100644
--- a/packages/0x.js/CHANGELOG.md
+++ b/packages/0x.js/CHANGELOG.md
@@ -3,8 +3,8 @@
## v0.x.x - _TBD, 2018_
* Add an error parameter to the order watcher callback (#312)
- * Fix the bug making it impossible to catch some errors from awaitTransactionMinedAsync (#312)
- * Fix the bug in fillOrdersUpTo validation making it impossible to fill up to if user doesn't have enough balance to fully fill all the orders (#321)
+ * Fix a bug making it impossible to catch some errors from awaitTransactionMinedAsync (#312)
+ * Fix a bug in fillOrdersUpTo validation making it impossible to fill up to if user doesn't have enough balance to fully fill all the orders (#321)
## v0.29.1 - _January 11, 2018_
diff --git a/packages/0x.js/test/exchange_wrapper_test.ts b/packages/0x.js/test/exchange_wrapper_test.ts
index 3e4c40b15..d2a2149a0 100644
--- a/packages/0x.js/test/exchange_wrapper_test.ts
+++ b/packages/0x.js/test/exchange_wrapper_test.ts
@@ -550,7 +550,7 @@ describe('ExchangeWrapper', () => {
const remainingFillAmount = fillableAmount.minus(1);
expect(anotherFilledAmount).to.be.bignumber.equal(remainingFillAmount);
});
- it('should successfully fill up to specified amount even if filling all orders will fail', async () => {
+ it('should successfully fill up to specified amount even if filling all orders would fail', async () => {
const missingBalance = new BigNumber(1); // User will still have enough balance to fill up to 9,
// but won't have 10 to fully fill all orders in a batch.
await zeroEx.token.transferAsync(makerTokenAddress, makerAddress, coinbase, missingBalance);
@@ -569,8 +569,8 @@ describe('ExchangeWrapper', () => {
});
});
describe('failed batch fills', () => {
- it("should fail validation if user doesn't have enough balance wo fill up to", async () => {
- const missingBalance = new BigNumber(2); // User will only have anough balance to fill up to 8
+ it("should fail validation if user doesn't have enough balance without fill up to", async () => {
+ const missingBalance = new BigNumber(2); // User will only have enough balance to fill up to 8
await zeroEx.token.transferAsync(makerTokenAddress, makerAddress, coinbase, missingBalance);
return expect(
zeroEx.exchange.fillOrdersUpToAsync(