Fix typo in packages/pipeline/src/parsers/bloxy/index.ts

Co-Authored-By: albrow <stephenalexbrowne@gmail.com>
This commit is contained in:
Fabio B
2018-12-04 19:31:19 -08:00
committed by GitHub
parent 8721d4ed7a
commit ebdc539da7

View File

@@ -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, '');