Skip to content

Commit fb6e825

Browse files
committed
Auto-generated commit
1 parent 1070bf4 commit fb6e825

File tree

29 files changed

+31
-29
lines changed

29 files changed

+31
-29
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,8 @@ A total of 6 people contributed to this release. Thank you to the following cont
426426

427427
<details>
428428

429+
- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
430+
- [`ed44fee`](https://github.com/stdlib-js/stdlib/commit/ed44feecb9eaa5e0849d1a533e5415624d0aa338) - **style:** use imperative in package.json description and end with period _(by Philipp Burckhardt)_
429431
- [`08f39b4`](https://github.com/stdlib-js/stdlib/commit/08f39b45439d043323ec402647f6b3ea8a5a4a56) - **feat:** add C `ndarray` implementation for `blas/base/scopy` [(#2913)](https://github.com/stdlib-js/stdlib/pull/2913) _(by Aman Bhansali, Athan Reines)_
430432
- [`40502bb`](https://github.com/stdlib-js/stdlib/commit/40502bb62ccef0eecf1132430422a35ae9e5dd3a) - **feat:** add C `ndarray` implementation for `blas/base/dcopy` [(#2906)](https://github.com/stdlib-js/stdlib/pull/2906) _(by Aman Bhansali, Athan Reines)_
431433
- [`7e11338`](https://github.com/stdlib-js/stdlib/commit/7e11338ae6642c1389e51557262710bd6ebe44aa) - **feat:** add `blas/ext/base/zfill` [(#2907)](https://github.com/stdlib-js/stdlib/pull/2907) _(by Muhammad Haris, Athan Reines)_

base/cswap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/blas/base/cswap",
33
"version": "0.0.0",
4-
"description": "Interchanges two complex single-precision floating-point vectors.",
4+
"description": "Interchange two complex single-precision floating-point vectors.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

base/dger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/blas/base/dger",
33
"version": "0.0.0",
4-
"description": "Performs the rank 1 operation A = alpha⋅x⋅y^T + A.",
4+
"description": "Perform the rank 1 operation A = alpha⋅x⋅y^T + A.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

base/diagonal-type-str2enum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var str2enum = require( '@stdlib/blas/base/diagonal-type-str2enum' );
4242

4343
#### str2enum( diagonal )
4444

45-
Return the enumeration constant associated with a BLAS diagonal-type.
45+
Returns the enumeration constant associated with a BLAS diagonal-type.
4646

4747
```javascript
4848
var v = str2enum( 'unit' );

base/layout-str2enum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var str2enum = require( '@stdlib/blas/base/layout-str2enum' );
4242

4343
#### str2enum( layout )
4444

45-
Return the enumeration constant associated with a BLAS memory layout string.
45+
Returns the enumeration constant associated with a BLAS memory layout string.
4646

4747
```javascript
4848
var v = str2enum( 'row-major' );

base/matrix-triangle-str2enum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var str2enum = require( '@stdlib/blas/base/matrix-triangle-str2enum' );
4242

4343
#### str2enum( operation )
4444

45-
Return the enumeration constant associated with a BLAS matrix triangle.
45+
Returns the enumeration constant associated with a BLAS matrix triangle.
4646

4747
```javascript
4848
var v = str2enum( 'upper' );

base/operation-side-str2enum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var str2enum = require( '@stdlib/blas/base/operation-side-str2enum' );
4242

4343
#### str2enum( operation )
4444

45-
Return the enumeration constant associated with a BLAS operation side.
45+
Returns the enumeration constant associated with a BLAS operation side.
4646

4747
```javascript
4848
var v = str2enum( 'left' );

base/transpose-operation-str2enum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var str2enum = require( '@stdlib/blas/base/transpose-operation-str2enum' );
4242

4343
#### str2enum( operation )
4444

45-
Return the enumeration constant associated with a BLAS transpose operation.
45+
Returns the enumeration constant associated with a BLAS transpose operation.
4646

4747
```javascript
4848
var v = str2enum( 'transpose' );

base/zswap/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var zswap = require( '@stdlib/blas/base/zswap' );
4040

4141
#### zswap( N, x, strideX, y, strideY )
4242

43-
Interchange two complex double-precision floating-point vectors.
43+
Interchanges two complex double-precision floating-point vectors.
4444

4545
```javascript
4646
var Complex128Array = require( '@stdlib/array/complex128' );
@@ -151,7 +151,7 @@ im = imag( z );
151151

152152
#### zswap.ndarray( N, x, strideX, offsetX, y, strideY, offsetY )
153153

154-
Interchange two complex double-precision floating-point vectors using alternative indexing semantics.
154+
Interchanges two complex double-precision floating-point vectors using alternative indexing semantics.
155155

156156
```javascript
157157
var Complex128Array = require( '@stdlib/array/complex128' );

base/zswap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/blas/base/zswap",
33
"version": "0.0.0",
4-
"description": "Interchanges two complex double-precision floating-point vectors.",
4+
"description": "Interchange two complex double-precision floating-point vectors.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)