From 876fe52efcc84a9e1f5c7eb36849624713f8cb5d Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 27 Nov 2015 20:16:11 -0600 Subject: [PATCH] Describe `HOT` vars a bit more. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 64fe03ae7..84e8b3a40 100644 --- a/lodash.js +++ b/lodash.js @@ -34,7 +34,7 @@ var DEFAULT_TRUNC_LENGTH = 30, DEFAULT_TRUNC_OMISSION = '...'; - /** Used to detect when a function becomes hot. */ + /** Used to detect hot functions by number of calls within a span of milliseconds. */ var HOT_COUNT = 150, HOT_SPAN = 16;