diff --git a/CHANGELOG.md b/CHANGELOG.md index bf5d47a09..1692ab33c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4464,6 +4464,7 @@ A total of 26 people contributed to this release. Thank you to the following con
+- [`46ff6c1`](https://github.com/stdlib-js/stdlib/commit/46ff6c17fe80cb1a7e153ac1fc728d6dab2195cf) - **docs:** update description per conventions _(by Philipp Burckhardt)_ - [`29fbbb6`](https://github.com/stdlib-js/stdlib/commit/29fbbb62d94cb2af1d8856004b75c03daf942053) - **chore:** minor clean-up _(by Philipp Burckhardt)_ - [`fb04f19`](https://github.com/stdlib-js/stdlib/commit/fb04f1968006f8bee36735f9b71d857f478bb6c1) - **refactor:** reduce test tolerance and fix casting [(#2356)](https://github.com/stdlib-js/stdlib/pull/2356) _(by Gunj Joshi)_ - [`ced30b0`](https://github.com/stdlib-js/stdlib/commit/ced30b0e285117ad5bcdf6cc940329aadc826e21) - **refactor:** use constant packages and remove unused include [(#2355)](https://github.com/stdlib-js/stdlib/pull/2355) _(by Gunj Joshi)_ diff --git a/base/special/nanmin/docs/types/index.d.ts b/base/special/nanmin/docs/types/index.d.ts index 925b7b65f..036bd1d85 100644 --- a/base/special/nanmin/docs/types/index.d.ts +++ b/base/special/nanmin/docs/types/index.d.ts @@ -19,7 +19,7 @@ // TypeScript Version: 4.1 /** -* Return the minimum value, ignoring NaN. +* Returns the minimum value, ignoring NaN. * * @param x - first number * @param y - second number diff --git a/base/special/nanmin/lib/main.js b/base/special/nanmin/lib/main.js index 6a8b90f49..80b4a853a 100644 --- a/base/special/nanmin/lib/main.js +++ b/base/special/nanmin/lib/main.js @@ -27,7 +27,7 @@ var isnan = require( './../../../../base/assert/is-nan'); // MAIN // /** -* Return the minimum value, ignoring NaN. +* Returns the minimum value, ignoring NaN. * * @param {number} x - first number * @param {number} y - second number diff --git a/base/special/nanmin/package.json b/base/special/nanmin/package.json index 7edce079b..53408a68f 100644 --- a/base/special/nanmin/package.json +++ b/base/special/nanmin/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/math/base/special/nanmin", "version": "0.0.0", - "description": "Returns the minimum value, ignoring NaN.", + "description": "Return the minimum value, ignoring NaN.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors",