Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 16, 2024
1 parent 9e4df62 commit e8aaf42
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 21 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<section class="release" id="unreleased">

## Unreleased (2024-07-14)
## Unreleased (2024-07-16)

<section class="packages">

Expand Down Expand Up @@ -1693,6 +1693,7 @@ A total of 10 people contributed to this release. Thank you to the following con

<details>

- [`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)_
Expand Down
12 changes: 6 additions & 6 deletions is-complex-typed-array-like/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
12 changes: 6 additions & 6 deletions is-complex-typed-array-like/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions is-typed-array-like/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
8 changes: 4 additions & 4 deletions is-typed-array-like/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e8aaf42

Please sign in to comment.