diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-06 03:02:27 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-06 03:34:59 +0800 |
commit | c64ec92fb23fd130d0c54a4d42147bb468e434d9 (patch) | |
tree | 2be1ce0e080d5392cc4ab33d244528171479c345 /packages/0x.js/src/utils | |
parent | 3880f2b3cc03ef138cb804f6eb09ed6bb298f111 (diff) | |
download | dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.gz dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.bz2 dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.lz dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.xz dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.zst dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.zip |
Address feedback
Diffstat (limited to 'packages/0x.js/src/utils')
-rw-r--r-- | packages/0x.js/src/utils/class_utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/src/utils/class_utils.ts b/packages/0x.js/src/utils/class_utils.ts index b89d3ba32..04e60ee57 100644 --- a/packages/0x.js/src/utils/class_utils.ts +++ b/packages/0x.js/src/utils/class_utils.ts @@ -1,7 +1,7 @@ import * as _ from 'lodash'; export const classUtils = { - // This is usefull for classes that have nested methods. Nested methods don't get binded out of the box. + // This is useful for classes that have nested methods. Nested methods don't get bound out of the box. bindAll(self: any, exclude: string[] = ['contructor'], thisArg?: any): void { for (const key of Object.getOwnPropertyNames(self)) { const val = self[key]; |