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 7, 2024
1 parent b584b2c commit 0a00634
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 7 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

> Package changelog.
<section class="release" id="unreleased">

## Unreleased (2024-07-07)

<section class="commits">

### Commits

<details>

- [`659f752`](https://github.com/stdlib-js/stdlib/commit/659f752db18317bf5fc237fdbcad0d74b61e1ed9) - **style:** add missing spaces _(by Philipp Burckhardt)_

</details>

</section>

<!-- /.commits -->

<section class="contributors">

### Contributors

A total of 1 person contributed to this release. Thank you to this contributor:

- Philipp Burckhardt

</section>

<!-- /.contributors -->

</section>

<!-- /.release -->

<section class="release" id="v0.0.1">

## 0.0.1 (2024-06-19)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-special-nanmin.svg
[npm-url]: https://npmjs.org/package/@stdlib/math-base-special-nanmin

[test-image]: https://github.com/stdlib-js/math-base-special-nanmin/actions/workflows/test.yml/badge.svg?branch=v0.0.1
[test-url]: https://github.com/stdlib-js/math-base-special-nanmin/actions/workflows/test.yml?query=branch:v0.0.1
[test-image]: https://github.com/stdlib-js/math-base-special-nanmin/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/math-base-special-nanmin/actions/workflows/test.yml?query=branch:main

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-nanmin/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-nanmin?branch=main
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

// MODULES //

var min = require( '@stdlib/math-base-special-min');
var isnan = require( '@stdlib/math-base-assert-is-nan');
var min = require( '@stdlib/math-base-special-min' );
var isnan = require( '@stdlib/math-base-assert-is-nan' );


// MAIN //
Expand All @@ -42,7 +42,7 @@ var isnan = require( '@stdlib/math-base-assert-is-nan');
* // returns 4.14
*
* @example
* var v = nanmin( NaN, NaN);
* var v = nanmin( NaN, NaN );
* // returns NaN
*/
function nanmin( x, y ) {
Expand Down

0 comments on commit 0a00634

Please sign in to comment.