From e613968d83b10caa021cb96b0c9d497735e08678 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 15 May 2026 12:25:43 +0000 Subject: [PATCH 1/4] docs: fix description and return annotation in `ndarray/base/falses-like` --- .../@stdlib/ndarray/base/falses-like/docs/types/index.d.ts | 2 +- lib/node_modules/@stdlib/ndarray/base/falses-like/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/falses-like/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/base/falses-like/docs/types/index.d.ts index 1b463096269e..aafc1a128bec 100644 --- a/lib/node_modules/@stdlib/ndarray/base/falses-like/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/base/falses-like/docs/types/index.d.ts @@ -26,7 +26,7 @@ import { typedndarray } from '@stdlib/types/ndarray'; * Creates an ndarray filled with `false` values and having the same shape and data type as a provided input ndarray. * * @param x - input array -* @returns filled ndarray +* @returns `false`-filled array * * @example * var getShape = require( '@stdlib/ndarray/shape' ); diff --git a/lib/node_modules/@stdlib/ndarray/base/falses-like/package.json b/lib/node_modules/@stdlib/ndarray/base/falses-like/package.json index 4906ce8a0aaf..5a536c5b645c 100644 --- a/lib/node_modules/@stdlib/ndarray/base/falses-like/package.json +++ b/lib/node_modules/@stdlib/ndarray/base/falses-like/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/ndarray/base/falses-like", "version": "0.0.0", - "description": "Create an ndarray filled with `false` values and having the same shape and data type as a provided ndarray.", + "description": "Create an ndarray filled with false values and having the same shape and data type as a provided ndarray.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", From b2c19b5d184630317a94189bea0acb149ed6cc19 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 15 May 2026 12:25:50 +0000 Subject: [PATCH 2/4] docs: fix description and return annotation in `ndarray/base/trues-like` --- .../@stdlib/ndarray/base/trues-like/docs/types/index.d.ts | 2 +- lib/node_modules/@stdlib/ndarray/base/trues-like/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/trues-like/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/base/trues-like/docs/types/index.d.ts index 2ea0a7a4cb2a..f2b0c4361d5b 100644 --- a/lib/node_modules/@stdlib/ndarray/base/trues-like/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/base/trues-like/docs/types/index.d.ts @@ -26,7 +26,7 @@ import { typedndarray } from '@stdlib/types/ndarray'; * Creates an ndarray filled with `true` values and having the same shape and data type as a provided input ndarray. * * @param x - input array -* @returns filled ndarray +* @returns `true`-filled array * * @example * var getShape = require( '@stdlib/ndarray/shape' ); diff --git a/lib/node_modules/@stdlib/ndarray/base/trues-like/package.json b/lib/node_modules/@stdlib/ndarray/base/trues-like/package.json index 24d269401cf1..9f19ca4f5de7 100644 --- a/lib/node_modules/@stdlib/ndarray/base/trues-like/package.json +++ b/lib/node_modules/@stdlib/ndarray/base/trues-like/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/ndarray/base/trues-like", "version": "0.0.0", - "description": "Create an ndarray filled with `true` values and having the same shape and data type as a provided ndarray.", + "description": "Create an ndarray filled with true values and having the same shape and data type as a provided ndarray.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", From 443e3bb1872a848197aedbeea73482e02ca96b79 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 17 May 2026 21:27:12 +0000 Subject: [PATCH 3/4] docs: restore return annotation in `ndarray/base/falses-like` Reverts the `@returns` annotation change per maintainer review. --- .../@stdlib/ndarray/base/falses-like/docs/types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/falses-like/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/base/falses-like/docs/types/index.d.ts index aafc1a128bec..1b463096269e 100644 --- a/lib/node_modules/@stdlib/ndarray/base/falses-like/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/base/falses-like/docs/types/index.d.ts @@ -26,7 +26,7 @@ import { typedndarray } from '@stdlib/types/ndarray'; * Creates an ndarray filled with `false` values and having the same shape and data type as a provided input ndarray. * * @param x - input array -* @returns `false`-filled array +* @returns filled ndarray * * @example * var getShape = require( '@stdlib/ndarray/shape' ); From 32522cf252cbf7c5eb4c1dbed5f59409b495b4f7 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 17 May 2026 21:27:13 +0000 Subject: [PATCH 4/4] docs: restore return annotation in `ndarray/base/trues-like` Reverts the `@returns` annotation change per maintainer review. --- .../@stdlib/ndarray/base/trues-like/docs/types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/trues-like/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/base/trues-like/docs/types/index.d.ts index f2b0c4361d5b..2ea0a7a4cb2a 100644 --- a/lib/node_modules/@stdlib/ndarray/base/trues-like/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/base/trues-like/docs/types/index.d.ts @@ -26,7 +26,7 @@ import { typedndarray } from '@stdlib/types/ndarray'; * Creates an ndarray filled with `true` values and having the same shape and data type as a provided input ndarray. * * @param x - input array -* @returns `true`-filled array +* @returns filled ndarray * * @example * var getShape = require( '@stdlib/ndarray/shape' );