From 27d3311b6a8002a54c8bcfbd1945abf6d94f77d9 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 5 Apr 2016 21:52:17 -0700 Subject: [PATCH] Don't spell out two hundred. [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 2b1c57e13..a5ee90522 100644 --- a/lodash.js +++ b/lodash.js @@ -1487,9 +1487,9 @@ * Shortcut fusion is an optimization to merge iteratee calls; this avoids * the creation of intermediate arrays and can greatly reduce the number of * iteratee executions. Sections of a chain sequence qualify for shortcut - * fusion if the section is applied to an array of at least two hundred - * elements and any iteratees accept only one argument. The heuristic for - * whether a section qualifies for shortcut fusion is subject to change. + * fusion if the section is applied to an array of at least `200` elements + * and any iteratees accept only one argument. The heuristic for whether a + * section qualifies for shortcut fusion is subject to change. * * Chaining is supported in custom builds as long as the `_#value` method is * directly or indirectly included in the build.