From 22445bdee82fcfdafc62112ce9e8992adeb7cff0 Mon Sep 17 00:00:00 2001 From: Matt Van Horn <455140+mvanhorn@users.noreply.github.com> Date: Thu, 26 Mar 2026 00:34:48 -0700 Subject: [PATCH] fix: add missing method name in little-endian-factory benchmark The benchmark name format string was missing the :of: method name segment. Changed '%s:len=5' to '%s:of:len=5' to match the convention used by the first benchmark in the same file and other factory benchmarks. Closes #11151 Co-Authored-By: Claude Opus 4.6 --- .../array/little-endian-factory/benchmark/benchmark.of.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/array/little-endian-factory/benchmark/benchmark.of.js b/lib/node_modules/@stdlib/array/little-endian-factory/benchmark/benchmark.of.js index 1d87d923e0a3..5a69855f3db7 100644 --- a/lib/node_modules/@stdlib/array/little-endian-factory/benchmark/benchmark.of.js +++ b/lib/node_modules/@stdlib/array/little-endian-factory/benchmark/benchmark.of.js @@ -52,7 +52,7 @@ bench( format( '%s:of', pkg ), function benchmark( b ) { b.end(); }); -bench( format( '%s:len=5', pkg ), function benchmark( b ) { +bench( format( '%s:of:len=5', pkg ), function benchmark( b ) { var buf; var arr; var i;