Skip to content

Commit bf625d4

Browse files
committed
Auto-generated commit
1 parent bdb0476 commit bf625d4

21 files changed

+3031
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,28 @@
219219

220220
<!-- /.package -->
221221

222+
<section class="package" id="array-fixed-endian-float64-unreleased">
223+
224+
#### [@stdlib/array/fixed-endian-float64](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/fixed-endian-float64)
225+
226+
<details>
227+
228+
<section class="features">
229+
230+
##### Features
231+
232+
- [`9325d5f`](https://github.com/stdlib-js/stdlib/commit/9325d5fcb04b58b7405cc9fd387935d9707cfb0e) - add `array/fixed-endian-float64`
233+
234+
</section>
235+
236+
<!-- /.features -->
237+
238+
</details>
239+
240+
</section>
241+
242+
<!-- /.package -->
243+
222244
</section>
223245

224246
<!-- /.packages -->
@@ -245,7 +267,11 @@ A total of 5 people contributed to this release. Thank you to the following cont
245267

246268
<details>
247269

270+
- [`9325d5f`](https://github.com/stdlib-js/stdlib/commit/9325d5fcb04b58b7405cc9fd387935d9707cfb0e) - **feat:** add `array/fixed-endian-float64` _(by Athan Reines)_
248271
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
272+
- [`6feb08f`](https://github.com/stdlib-js/stdlib/commit/6feb08f927a08bc7fbb29a721e04218cbd618200) - **style:** fix missing space _(by Athan Reines)_
273+
- [`988ba2c`](https://github.com/stdlib-js/stdlib/commit/988ba2c59bc5112d3c4e468245a69ce4ebe92109) - **docs:** fix example _(by Athan Reines)_
274+
- [`2faaf21`](https://github.com/stdlib-js/stdlib/commit/2faaf217eab865f9e40abbb0bf21b374595853e9) - **docs:** fix example _(by Athan Reines)_
249275
- [`20dea8a`](https://github.com/stdlib-js/stdlib/commit/20dea8af2b14181aa75354f7e3aeb65b955904b9) - **docs:** remove extraneous newline _(by Athan Reines)_
250276
- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
251277
- [`31fd427`](https://github.com/stdlib-js/stdlib/commit/31fd42744ec5d7073041f97c6f72350b8005c0fc) - **style:** remove unwanted empty lines _(by Philipp Burckhardt)_

bool/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function isBooleanArray( value ) {
7878
* @returns {boolean} boolean indicating if a value is a boolean typed array constructor
7979
*/
8080
function isBooleanArrayConstructor( value ) {
81-
return ( value === BooleanArray);
81+
return ( value === BooleanArray );
8282
}
8383

8484

complex128/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
* // returns <Complex128Array>
7171
*
7272
* var len = arr.length;
73-
* // returns 2
73+
* // returns 1
7474
*
7575
* @example
7676
* var ArrayBuffer = require( '@stdlib/array/buffer' );

complex64/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
* // returns <Complex64Array>
6060
*
6161
* var len = arr.length;
62-
* // returns 2
62+
* // returns 1
6363
*
6464
* @example
6565
* var ArrayBuffer = require( '@stdlib/array/buffer' );

0 commit comments

Comments
 (0)