From 0906fbf995e25ae2ddda363a6b489e857c931ea7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 7 Jan 2015 21:01:12 -0800 Subject: [PATCH] Correct benchmark titles for `_.includes`. --- perf/perf.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perf/perf.js b/perf/perf.js index 3dda524ae..4c80882e2 100644 --- a/perf/perf.js +++ b/perf/perf.js @@ -1054,7 +1054,7 @@ /*--------------------------------------------------------------------------*/ suites.push( - Benchmark.Suite('`_.include` iterating an array') + Benchmark.Suite('`_.includes` searching an array') .add(buildName, '\ lodash.include(numbers, limit - 1)' ) @@ -1064,7 +1064,7 @@ ); suites.push( - Benchmark.Suite('`_.include` iterating an object') + Benchmark.Suite('`_.includes` searching an object') .add(buildName, '\ lodash.include(object, limit - 1)' ) @@ -1075,7 +1075,7 @@ if (lodash.include('ab', 'ab') && _.include('ab', 'ab')) { suites.push( - Benchmark.Suite('`_.include` iterating a string') + Benchmark.Suite('`_.includes` searching a string') .add(buildName, '\ lodash.include(strNumbers, "," + (limit - 1))' )