Skip to content

Commit 61c737a

Browse files
committed
Auto-generated commit
1 parent 0bd7e39 commit 61c737a

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -801,6 +801,7 @@ A total of 44 issues were closed in this release:
801801

802802
<details>
803803

804+
- [`90b1d08`](https://github.com/stdlib-js/stdlib/commit/90b1d08d97ae2d4db68836796d38f486d62d6610) - **chore:** minor clean-up _(by Philipp Burckhardt)_
804805
- [`b6cd4ce`](https://github.com/stdlib-js/stdlib/commit/b6cd4ce12c9a6a123963dca5e8b8bd9647f2ac47) - **feat:** update `ndarray/base` TypeScript declarations [(#11113)](https://github.com/stdlib-js/stdlib/pull/11113) _(by stdlib-bot)_
805806
- [`0a0d966`](https://github.com/stdlib-js/stdlib/commit/0a0d966d4d29db076510cabadc79aa66a037ec28) - **feat:** add `full` to namespace _(by Athan Reines)_
806807
- [`204c9d9`](https://github.com/stdlib-js/stdlib/commit/204c9d9ac9befd22cce40a0f9b6db373dd6d62df) - **feat:** add `ndarray/base/full` [(#11017)](https://github.com/stdlib-js/stdlib/pull/11017) _(by Loay Ahmed, Athan Reines, stdlib-bot)_

base/assign-scalar/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Each provided [ndarray][@stdlib/ndarray/base/ctor] should be an object with the
9191
- **shape**: dimensions.
9292
- **strides**: stride lengths.
9393
- **offset**: index offset.
94-
- **order**: specifies whether an ndarray is row-major (C-style) or column major (Fortran-style).
94+
- **order**: specifies whether an ndarray is row-major (C-style) or column-major (Fortran-style).
9595

9696
</section>
9797

base/assign-scalar/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ function complex2real( x ) {
235235
* - **shape**: dimensions.
236236
* - **strides**: stride lengths.
237237
* - **offset**: index offset.
238-
* - **order**: specifies whether an ndarray is row-major (C-style) or column major (Fortran-style).
238+
* - **order**: specifies whether an ndarray is row-major (C-style) or column-major (Fortran-style).
239239
*
240240
* @param {ArrayLikeObject<Object>} arrays - array-like object containing a zero-dimensional ndarray containing the scalar value and one output ndarray
241241
* @returns {void}

base/full/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ This function accepts the following arguments:
7575

7676
## Notes
7777

78-
- If `value` is a number and `x` has a complex [data type][@stdlib/ndarray/dtypes], the function fills an output ndarray with a complex number whose real component equals the provided scalar `value` and whose imaginary component is zero.
78+
- If `value` is a number and `dtype` is a complex [data type][@stdlib/ndarray/dtypes], the function creates an output ndarray with a complex number whose real component equals the provided scalar `value` and whose imaginary component is zero.
7979
- A `value` must be able to safely cast to the output ndarray [data type][@stdlib/ndarray/dtypes]. Scalar values having floating-point data types (both real and complex) are allowed to downcast to a lower precision data type of the same kind (e.g., a scalar double-precision floating-point number can be used to fill a `'float32'` output ndarray).
8080

8181
</section>

base/full/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tape( 'the function throws an error if provided an unrecognized data type', func
107107
];
108108

109109
for ( i = 0; i < values.length; i++ ) {
110-
t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] );
110+
t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] );
111111
}
112112
t.end();
113113

0 commit comments

Comments
 (0)