diff options
author | Fabio B <kandinsky454@protonmail.ch> | 2018-12-05 11:31:19 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:06:35 +0800 |
commit | 4c65bbbb8f8f6eec1c7aad1a71f5335ee59c78eb (patch) | |
tree | 839272873cd590af06e570f6036f573f806c1b56 /packages/pipeline | |
parent | 105da3f8147439010d69d5d5a2689bd7af8763f6 (diff) | |
download | dexon-sol-tools-4c65bbbb8f8f6eec1c7aad1a71f5335ee59c78eb.tar dexon-sol-tools-4c65bbbb8f8f6eec1c7aad1a71f5335ee59c78eb.tar.gz dexon-sol-tools-4c65bbbb8f8f6eec1c7aad1a71f5335ee59c78eb.tar.bz2 dexon-sol-tools-4c65bbbb8f8f6eec1c7aad1a71f5335ee59c78eb.tar.lz dexon-sol-tools-4c65bbbb8f8f6eec1c7aad1a71f5335ee59c78eb.tar.xz dexon-sol-tools-4c65bbbb8f8f6eec1c7aad1a71f5335ee59c78eb.tar.zst dexon-sol-tools-4c65bbbb8f8f6eec1c7aad1a71f5335ee59c78eb.zip |
Fix typo in packages/pipeline/src/parsers/bloxy/index.ts
Co-Authored-By: albrow <stephenalexbrowne@gmail.com>
Diffstat (limited to 'packages/pipeline')
-rw-r--r-- | packages/pipeline/src/parsers/bloxy/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/pipeline/src/parsers/bloxy/index.ts b/packages/pipeline/src/parsers/bloxy/index.ts index af07c7507..caa55d289 100644 --- a/packages/pipeline/src/parsers/bloxy/index.ts +++ b/packages/pipeline/src/parsers/bloxy/index.ts @@ -49,5 +49,5 @@ export function _parseBloxyTrade(rawTrade: BloxyTrade): DexTrade { return dexTrade; } -// Works with any form of escaoed null character (e.g., '\0' and '\u0000'). +// Works with any form of escaped null character (e.g., '\0' and '\u0000'). const filterNullCharacters = R.replace(/\0/g, ''); |