Use truey instead of truthy, /ht @brucelawson. [ci skip]

This commit is contained in:
John-David Dalton
2013-08-29 21:06:07 -07:00
parent b3a94c26d9
commit b95c1adc86
2 changed files with 14 additions and 14 deletions

View File

@@ -3396,7 +3396,7 @@
QUnit.module('lodash.some');
(function() {
test('should return `true` as soon as the `callback` result is truthy', function() {
test('should return `true` as soon as the `callback` result is truey', function() {
strictEqual(_.some([null, true, null], _.identity), true);
});
}());