From c64ec92fb23fd130d0c54a4d42147bb468e434d9 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Tue, 5 Dec 2017 22:02:27 +0300 Subject: Address feedback --- packages/0x.js/src/utils/class_utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/0x.js/src/utils/class_utils.ts') 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]; -- cgit v1.2.3