From 49a07e298e4d607e47565db42dce2bf279727c59 Mon Sep 17 00:00:00 2001 From: paulfalgout Date: Thu, 19 Feb 2015 23:45:03 -0600 Subject: [PATCH] "fasley" to "falsey" --- test/objects.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/objects.js b/test/objects.js index 87729bb26..ba6413a57 100644 --- a/test/objects.js +++ b/test/objects.js @@ -775,7 +775,7 @@ //null edge cases var oCon = {'constructor': Object}; - deepEqual(_.map([null, undefined, 5, {}], _.partial(_.isMatch, _, oCon)), [false, false, false, true], 'doesnt fasley match constructor on undefined/null'); + deepEqual(_.map([null, undefined, 5, {}], _.partial(_.isMatch, _, oCon)), [false, false, false, true], 'doesnt falsey match constructor on undefined/null'); }); test('matcher', function() { @@ -832,7 +832,7 @@ //null edge cases var oCon = _.matcher({'constructor': Object}); - deepEqual(_.map([null, undefined, 5, {}], oCon), [false, false, false, true], 'doesnt fasley match constructor on undefined/null'); + deepEqual(_.map([null, undefined, 5, {}], oCon), [false, false, false, true], 'doesnt falsey match constructor on undefined/null'); }); test('matcher', function() { @@ -889,7 +889,7 @@ //null edge cases var oCon = _.matcher({'constructor': Object}); - deepEqual(_.map([null, undefined, 5, {}], oCon), [false, false, false, true], 'doesnt fasley match constructor on undefined/null'); + deepEqual(_.map([null, undefined, 5, {}], oCon), [false, false, false, true], 'doesnt falsey match constructor on undefined/null'); }); test('findKey', function() {