From e8aaf42f4985bde5082e199c9d58efce51496ef6 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Tue, 16 Jul 2024 22:02:42 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 3 ++- is-complex-typed-array-like/lib/index.js | 12 ++++++------ is-complex-typed-array-like/lib/main.js | 12 ++++++------ is-typed-array-like/lib/index.js | 8 ++++---- is-typed-array-like/lib/main.js | 8 ++++---- 5 files changed, 22 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04c4d68d..33ddabfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-07-14) +## Unreleased (2024-07-16)
@@ -1693,6 +1693,7 @@ A total of 10 people contributed to this release. Thank you to the following con
+- [`dca9cf7`](https://github.com/stdlib-js/stdlib/commit/dca9cf7b5d08dccdc3487ddc245e9a22a74a274a) - **docs:** change indentation from tabs to spaces in JSDoc example code _(by Philipp Burckhardt)_ - [`d04dcbd`](https://github.com/stdlib-js/stdlib/commit/d04dcbd6dc3b0bf4a89bd3947d317fa5ff15bb38) - **docs:** remove private annotations in C comments _(by Philipp Burckhardt)_ - [`659f752`](https://github.com/stdlib-js/stdlib/commit/659f752db18317bf5fc237fdbcad0d74b61e1ed9) - **style:** add missing spaces _(by Philipp Burckhardt)_ - [`a5c9e56`](https://github.com/stdlib-js/stdlib/commit/a5c9e56a3ea7198ae4fe3248d4bfaa9e1d19bfcd) - **feat:** add `assert/is-same-booleanarray` [(#2401)](https://github.com/stdlib-js/stdlib/pull/2401) _(by Jaysukh Makvana, Athan Reines)_ diff --git a/is-complex-typed-array-like/lib/index.js b/is-complex-typed-array-like/lib/index.js index beb4fc7a..29076c0a 100644 --- a/is-complex-typed-array-like/lib/index.js +++ b/is-complex-typed-array-like/lib/index.js @@ -31,12 +31,12 @@ * // returns true * * bool = isComplexTypedArrayLike({ -* 'length': 10, -* 'byteOffset': 0, -* 'byteLength': 10, -* 'BYTES_PER_ELEMENT': 4, -* 'get': function get() {}, -* 'set': function set() {} +* 'length': 10, +* 'byteOffset': 0, +* 'byteLength': 10, +* 'BYTES_PER_ELEMENT': 4, +* 'get': function get() {}, +* 'set': function set() {} * }); * // returns true */ diff --git a/is-complex-typed-array-like/lib/main.js b/is-complex-typed-array-like/lib/main.js index a3f2e2f1..a7d25901 100644 --- a/is-complex-typed-array-like/lib/main.js +++ b/is-complex-typed-array-like/lib/main.js @@ -39,12 +39,12 @@ var MAX_LENGTH = MAX / 2; // every complex array element has both a real and ima * * @example * var arr = { -* 'BYTES_PER_ELEMENT': 8, -* 'length': 10, -* 'byteOffset': 0, -* 'byteLength': 10, -* 'get': function get() {}, -* 'set': function set() {} +* 'BYTES_PER_ELEMENT': 8, +* 'length': 10, +* 'byteOffset': 0, +* 'byteLength': 10, +* 'get': function get() {}, +* 'set': function set() {} * }; * var val = isComplexTypedArrayLike( arr ); * // returns true diff --git a/is-typed-array-like/lib/index.js b/is-typed-array-like/lib/index.js index d8b1a4c9..34289620 100644 --- a/is-typed-array-like/lib/index.js +++ b/is-typed-array-like/lib/index.js @@ -31,10 +31,10 @@ * // returns true * * bool = isTypedArrayLike({ -* 'length': 10, -* 'byteOffset': 0, -* 'byteLength': 10, -* 'BYTES_PER_ELEMENT': 4 +* 'length': 10, +* 'byteOffset': 0, +* 'byteLength': 10, +* 'BYTES_PER_ELEMENT': 4 * }); * // returns true */ diff --git a/is-typed-array-like/lib/main.js b/is-typed-array-like/lib/main.js index 4f0aa21c..a42b9725 100644 --- a/is-typed-array-like/lib/main.js +++ b/is-typed-array-like/lib/main.js @@ -34,10 +34,10 @@ var MAX = require( '@stdlib/constants/array/max-typed-array-length' ); * * @example * var arr = { -* 'BYTES_PER_ELEMENT': 8, -* 'length': 10, -* 'byteOffset': 0, -* 'byteLength': 10 +* 'BYTES_PER_ELEMENT': 8, +* 'length': 10, +* 'byteOffset': 0, +* 'byteLength': 10 * }; * var val = isTypedArrayLike( arr ); * // returns true