aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-12-20 03:12:46 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-12-20 21:02:24 +0800
commit78eb79396efcdf803d5be054b28816967fd340e0 (patch)
tree7a2bb0c066afc4d10399b78d1cd72e38da1bf253 /packages
parentabce410897c5b90cd70b258a5231c99817bec9c1 (diff)
downloaddexon-0x-contracts-78eb79396efcdf803d5be054b28816967fd340e0.tar
dexon-0x-contracts-78eb79396efcdf803d5be054b28816967fd340e0.tar.gz
dexon-0x-contracts-78eb79396efcdf803d5be054b28816967fd340e0.tar.bz2
dexon-0x-contracts-78eb79396efcdf803d5be054b28816967fd340e0.tar.lz
dexon-0x-contracts-78eb79396efcdf803d5be054b28816967fd340e0.tar.xz
dexon-0x-contracts-78eb79396efcdf803d5be054b28816967fd340e0.tar.zst
dexon-0x-contracts-78eb79396efcdf803d5be054b28816967fd340e0.zip
Fix a typo
Diffstat (limited to 'packages')
-rw-r--r--packages/0x.js/test/ether_token_wrapper_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/test/ether_token_wrapper_test.ts b/packages/0x.js/test/ether_token_wrapper_test.ts
index cdb6ef3b6..f3feb39c6 100644
--- a/packages/0x.js/test/ether_token_wrapper_test.ts
+++ b/packages/0x.js/test/ether_token_wrapper_test.ts
@@ -144,7 +144,7 @@ describe('EtherTokenWrapper', () => {
});
// Hack: Mocha does not allow a test to be both async and have a `done` callback
// Since we need to await the receipt of the event in the `subscribe` callback,
- // we do need both. A hack is to make the top-level a sync fn w/ a done callback and then
+ // we do need both. A hack is to make the top-level async fn w/ a done callback and then
// wrap the rest of the test in an async block
// Source: https://github.com/mochajs/mocha/issues/2407
it('Should receive the Transfer event when tokens are transfered', (done: DoneCallback) => {