From bf336b2a46b65f48bf1a4b5bbb4a7a66a0b45ea6 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Jul 2026 12:14:52 +0000 Subject: [PATCH 1/2] style: fix duplicated license header in `array/filled` Follow-up to c81fa285d. The generated `benchmark.length.float16.js` file opened its license block with two consecutive `/**` lines instead of one, breaking the standard stdlib Apache-2.0 header format used by every sibling benchmark file. --- .../@stdlib/array/filled/benchmark/benchmark.length.float16.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/array/filled/benchmark/benchmark.length.float16.js b/lib/node_modules/@stdlib/array/filled/benchmark/benchmark.length.float16.js index d0bbf03d4d02..ed13c64b22b7 100644 --- a/lib/node_modules/@stdlib/array/filled/benchmark/benchmark.length.float16.js +++ b/lib/node_modules/@stdlib/array/filled/benchmark/benchmark.length.float16.js @@ -1,5 +1,4 @@ /** -/** * @license Apache-2.0 * * Copyright (c) 2026 The Stdlib Authors. From 11675c974dea476d90e1bab4e0e2cc06f5b92622 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Jul 2026 12:15:06 +0000 Subject: [PATCH 2/2] style: fix comma spacing in `array/base/getter` type tests Follow-up to c38afb148. The float16 line in the type tests introduced a stray space before the comma (`get4( x4 , 2 )`); every other line in the file follows the standard `fn( x, y )` comma-spacing rule. --- lib/node_modules/@stdlib/array/base/getter/docs/types/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/array/base/getter/docs/types/test.ts b/lib/node_modules/@stdlib/array/base/getter/docs/types/test.ts index 67e09ca2168e..34a14262e1d7 100644 --- a/lib/node_modules/@stdlib/array/base/getter/docs/types/test.ts +++ b/lib/node_modules/@stdlib/array/base/getter/docs/types/test.ts @@ -71,7 +71,7 @@ import getter = require( './index' ); const get4 = getter( 'float16' ); const x4 = new Float16Array( [ 1, 2, 3, 4 ] ); - get4( x4 , 2 ); // $ExpectType number | void + get4( x4, 2 ); // $ExpectType number | void const get5 = getter( 'int32' ); const x5 = new Int32Array( [ 1, 2, 3, 4 ] );