From 32521cd1b6af751daf11bdca1b9500e6d28f086c Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 12 Oct 2014 12:56:33 -0700 Subject: [PATCH] Add comment to lazy flags. [ci skip] --- lodash.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index bf2f0ea30..6eb999c03 100644 --- a/lodash.js +++ b/lodash.js @@ -31,6 +31,7 @@ var HOT_COUNT = 150, HOT_SPAN = 16; + /** Used to indicate the type of lazy iteratees */ var LAZY_FILTER_FLAG = 1, LAZY_MAP_FLAG = 2, LAZY_WHILE_FLAG = 3; @@ -252,7 +253,7 @@ '`': '`' }; - /** Used to map lazy iteratee flags to lazy methods */ + /** Used to map iteratee types to lazy methods */ var lazyIterateeTypes = { 'filter': LAZY_FILTER_FLAG, 'map': LAZY_MAP_FLAG,