Describe HOT vars a bit more. [ci skip]

This commit is contained in:
John-David Dalton
2015-11-27 20:16:11 -06:00
parent 8f190b1fb1
commit 876fe52efc

View File

@@ -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;