From 78ac25b752bb540a9e39a1e662266e72b5ce25a9 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 3 Apr 2017 13:59:53 +0300 Subject: [PATCH] chore(util) caes -> case --- test/common/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/util.js b/test/common/util.js index 52a604cd..e87061c4 100644 --- a/test/common/util.js +++ b/test/common/util.js @@ -42,7 +42,7 @@ test('kebabToCamelCase: args', (t) => { }); test('kebabToCamelCase', (t) => { - t.equal(kebabToCamelCase('hello-world'), 'HelloWorld', 'should convert kebab to camel caes'); + t.equal(kebabToCamelCase('hello-world'), 'HelloWorld', 'should convert kebab to camel case'); t.end(); });