From 15b7bc0a862218dfc7246adb3f0f6aeca44b7e5d Mon Sep 17 00:00:00 2001 From: Shubham Date: Thu, 15 Jan 2026 17:10:59 +0530 Subject: [PATCH 1/2] fix: spelling errors in @stdlib/array --- .../array/base/accessors/docs/repl.txt | 10 +++---- .../base/accessors/docs/types/index.d.ts | 28 +++++++++---------- .../@stdlib/array/base/docs/types/index.d.ts | 2 +- .../@stdlib/array/struct-factory/lib/index.js | 2 +- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/lib/node_modules/@stdlib/array/base/accessors/docs/repl.txt b/lib/node_modules/@stdlib/array/base/accessors/docs/repl.txt index 44b95aa8a12a..bd26a6e4533b 100644 --- a/lib/node_modules/@stdlib/array/base/accessors/docs/repl.txt +++ b/lib/node_modules/@stdlib/array/base/accessors/docs/repl.txt @@ -5,11 +5,11 @@ The returned object has the following properties: - accessorProtocol: indicating whether the provided array-like object - supports the get/set protocol (i.e., uses accessors for getting and - setting elements). + supports the get/set protocol (i.e., uses accessors for getting and + setting elements). - accessors: a two-element array whose first element is an accessor for - retrieving an array element and whose second element is an accessor for - setting an array element. + retrieving an array element and whose second element is an accessor for + setting an array element. The getter accessor accepts two arguments: @@ -24,7 +24,7 @@ The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects - supporting element accesss via integer indices using bracket `[]` syntax) + supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array- like objects. diff --git a/lib/node_modules/@stdlib/array/base/accessors/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/base/accessors/docs/types/index.d.ts index 545692f4f3dc..16add6c6b544 100644 --- a/lib/node_modules/@stdlib/array/base/accessors/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/base/accessors/docs/types/index.d.ts @@ -490,7 +490,7 @@ interface GetSetAccessorObject { * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -518,7 +518,7 @@ declare function accessors( x: Float64Array ): Float64AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -546,7 +546,7 @@ declare function accessors( x: Float32Array ): Float32AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -574,7 +574,7 @@ declare function accessors( x: Int32Array ): Int32AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -602,7 +602,7 @@ declare function accessors( x: Int16Array ): Int16AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -630,7 +630,7 @@ declare function accessors( x: Int8Array ): Int8AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -658,7 +658,7 @@ declare function accessors( x: Uint32Array ): Uint32AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -686,7 +686,7 @@ declare function accessors( x: Uint16Array ): Uint16AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -714,7 +714,7 @@ declare function accessors( x: Uint8Array ): Uint8AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -742,7 +742,7 @@ declare function accessors( x: Uint8ClampedArray ): Uint8cAccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -770,7 +770,7 @@ declare function accessors( x: Complex128Array ): Complex128AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -798,7 +798,7 @@ declare function accessors( x: Complex64Array ): Complex64AccessorObject; * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -836,7 +836,7 @@ declare function accessors( x: AccessorArrayLike ): GetSetAccess * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data @@ -862,7 +862,7 @@ declare function accessors( x: Array ): GenericAccessorObject * * ## Notes * -* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. +* - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data diff --git a/lib/node_modules/@stdlib/array/base/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/base/docs/types/index.d.ts index 794055164e90..a863b4ddfedb 100644 --- a/lib/node_modules/@stdlib/array/base/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/base/docs/types/index.d.ts @@ -338,7 +338,7 @@ interface Namespace { * * ## Notes * - * - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. + * - The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects. * * @param x - input array * @returns object containing accessor data diff --git a/lib/node_modules/@stdlib/array/struct-factory/lib/index.js b/lib/node_modules/@stdlib/array/struct-factory/lib/index.js index 0fdfaa060934..92219dc1bd2d 100644 --- a/lib/node_modules/@stdlib/array/struct-factory/lib/index.js +++ b/lib/node_modules/@stdlib/array/struct-factory/lib/index.js @@ -39,7 +39,7 @@ * } * ]; * -* // Create a struct constructor for storing real and imaginary componenets: +* // Create a struct constructor for storing real and imaginary components: * var Components = structFactory( schema1 ); * * var schema2 = [ From ceb927c4ec390f3d789ac70a39773b76d44a0ded Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Thu, 15 Jan 2026 23:34:25 -0600 Subject: [PATCH 2/2] style: revert indentation change Signed-off-by: Philipp Burckhardt --- .../@stdlib/array/base/accessors/docs/repl.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/array/base/accessors/docs/repl.txt b/lib/node_modules/@stdlib/array/base/accessors/docs/repl.txt index bd26a6e4533b..317a31a0beeb 100644 --- a/lib/node_modules/@stdlib/array/base/accessors/docs/repl.txt +++ b/lib/node_modules/@stdlib/array/base/accessors/docs/repl.txt @@ -5,11 +5,11 @@ The returned object has the following properties: - accessorProtocol: indicating whether the provided array-like object - supports the get/set protocol (i.e., uses accessors for getting and - setting elements). + supports the get/set protocol (i.e., uses accessors for getting and + setting elements). - accessors: a two-element array whose first element is an accessor for - retrieving an array element and whose second element is an accessor for - setting an array element. + retrieving an array element and whose second element is an accessor for + setting an array element. The getter accessor accepts two arguments: