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 Sep 17, 2024
1 parent 85fd30d commit 81515f4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 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-09-15)
## Unreleased (2024-09-17)

<section class="packages">

Expand Down Expand Up @@ -145,6 +145,7 @@ A total of 3 people contributed to this release. Thank you to the following cont

<details>

- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
- [`95ef049`](https://github.com/stdlib-js/stdlib/commit/95ef04997f2f0f98406dbdf59c5c0ff757c5637a) - **docs:** fix grammar _(by Athan Reines)_
- [`037a7a8`](https://github.com/stdlib-js/stdlib/commit/037a7a81819bbbf2c0d784678b42d423f47d62ce) - **refactor:** use `const` qualifier and update examples _(by Athan Reines)_
- [`00651e7`](https://github.com/stdlib-js/stdlib/commit/00651e7847283dadfb29ef6c90addd78380a3c5b) - **refactor:** use `const` qualifier and update examples _(by Athan Reines)_
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#
# Contributors listed in alphabetical order.

Aayush Khanna <[email protected]>
Adarsh Palaskar <[email protected]>
Aditya Sapra <[email protected]>
AgPriyanshu18 <[email protected]>
Expand Down Expand Up @@ -39,6 +40,7 @@ Joey Reed <[email protected]>
Jordan Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
Kaif Mohd <[email protected]>
Karthik Prakash <[email protected]>
Khaldon <[email protected]>
Krishnendu Das <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion base/assign/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var assign = require( '@stdlib/ndarray/base/assign' );

#### assign( arrays )

Assign elements in an input ndarray to elements in an output ndarray.
Assigns elements in an input ndarray to elements in an output ndarray.

<!-- eslint-disable max-len -->

Expand Down
2 changes: 1 addition & 1 deletion base/broadcast-scalar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var broadcastScalar = require( '@stdlib/ndarray/base/broadcast-scalar' );

#### broadcastScalar( value, dtype, shape, order )

Broadcast a scalar value to an [`ndarray`][@stdlib/ndarray/base/ctor] having a specified shape and [data type][@stdlib/ndarray/dtypes].
Broadcasts a scalar value to an [`ndarray`][@stdlib/ndarray/base/ctor] having a specified shape and [data type][@stdlib/ndarray/dtypes].

```javascript
var x = broadcastScalar( 1.0, 'float64', [ 2, 2 ], 'row-major' );
Expand Down
2 changes: 1 addition & 1 deletion base/dtype-str2enum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var str2enum = require( '@stdlib/ndarray/base/dtype-str2enum' );

#### str2enum( dtype )

Return the enumeration constant associated with an ndarray data type `string`.
Returns the enumeration constant associated with an ndarray data type `string`.

```javascript
var v = str2enum( 'float64' );
Expand Down
2 changes: 1 addition & 1 deletion base/output-policy-str2enum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var str2enum = require( '@stdlib/ndarray/base/output-policy-str2enum' );

#### str2enum( policy )

Return the enumeration constant associated with an output ndarray [data type policy][@stdlib/ndarray/output-dtype-policies] string.
Returns the enumeration constant associated with an output ndarray [data type policy][@stdlib/ndarray/output-dtype-policies] string.

```javascript
var v = str2enum( 'same' );
Expand Down
2 changes: 1 addition & 1 deletion base/wrap-index/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var wrapIndex = require( '@stdlib/ndarray/base/wrap-index' );

#### wrapIndex( idx, max )

Wrap an index on the interval `[0,max]`.
Wraps an index on the interval `[0,max]`.

```javascript
var idx = wrapIndex( 2, 10 );
Expand Down

0 comments on commit 81515f4

Please sign in to comment.