From 6ec5249492ba8e07595577c5dfd29cca6138f561 Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 11 Feb 2015 08:29:41 -0800 Subject: [PATCH] Change `intuitively` to `implicitly`. --- test/test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.js b/test/test.js index caf183654..4cd605ae3 100644 --- a/test/test.js +++ b/test/test.js @@ -6559,7 +6559,7 @@ strictEqual(_.isEmpty(Foo), true); }); - test('should return an unwrapped value when intuitively chaining', 1, function() { + test('should return an unwrapped value when implicitly chaining', 1, function() { if (!isNpm) { strictEqual(_({}).isEmpty(), true); } @@ -7152,7 +7152,7 @@ } }); - test('should return an unwrapped value when intuitively chaining', 1, function() { + test('should return an unwrapped value when implicitly chaining', 1, function() { if (!isNpm) { strictEqual(_('a').isEqual('a'), true); } @@ -15070,7 +15070,7 @@ ]; _.each(funcs, function(methodName) { - test('`_(...).' + methodName + '` should return an unwrapped value when intuitively chaining', 1, function() { + test('`_(...).' + methodName + '` should return an unwrapped value when implicitly chaining', 1, function() { if (!isNpm) { var array = [1, 2, 3], actual = _(array)[methodName]();