diff --git a/CHANGELOG.md b/CHANGELOG.md index 6792b3c8..a48dd892 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-06-06) +## Unreleased (2024-07-07)
@@ -596,6 +596,8 @@ A total of 9 people contributed to this release. Thank you to the following cont
+- [`659f752`](https://github.com/stdlib-js/stdlib/commit/659f752db18317bf5fc237fdbcad0d74b61e1ed9) - **style:** add missing spaces _(by Philipp Burckhardt)_ +- [`a78f7d1`](https://github.com/stdlib-js/stdlib/commit/a78f7d1b859b6b1d7b0bc0ee4daf76789e3e0910) - **style:** add missing spaces _(by Philipp Burckhardt)_ - [`c3ebfa8`](https://github.com/stdlib-js/stdlib/commit/c3ebfa80e311db338b171ebf8eb5f46bc66e9bf6) - **docs:** update namespace table of contents and address spelling errors _(by Philipp Burckhardt)_ - [`547f610`](https://github.com/stdlib-js/stdlib/commit/547f6104226a8eb84c0473628733d859741ae661) - **fix:** perform explicit string casting when specifier is `%s` _(by Athan Reines)_ - [`f8775e6`](https://github.com/stdlib-js/stdlib/commit/f8775e6bda51d0d2c72d8005e6e377bed1dcc499) - **refactor:** avoid use of global _(by Athan Reines)_ diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a44d7ac4..7ec15a74 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -63,6 +63,7 @@ Pushpendra Chandravanshi Raunak Kumar Gupta Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com> Ricky Reusser +Ridam Garg <67867319+RidamGarg@users.noreply.github.com> Robert Gislason Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Rutam <138517416+performant23@users.noreply.github.com> @@ -75,7 +76,7 @@ Shraddheya Shendre Shubh Mehta <93862397+Shubh942@users.noreply.github.com> Shubham Mishra Sivam Das <100067002+Sivam2313@users.noreply.github.com> -Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com> +Snehil Shah Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com> Spandan Barve Stephannie Jiménez Gacha diff --git a/base/format-interpolate/lib/format_double.js b/base/format-interpolate/lib/format_double.js index b8452877..38ed7eaa 100644 --- a/base/format-interpolate/lib/format_double.js +++ b/base/format-interpolate/lib/format_double.js @@ -83,7 +83,7 @@ function formatDouble( token ) { } if ( !token.alternate ) { out = replace.call( out, RE_ZERO_BEFORE_EXP, '$1e' ); - out = replace.call( out, RE_PERIOD_ZERO_EXP, 'e'); + out = replace.call( out, RE_PERIOD_ZERO_EXP, 'e' ); out = replace.call( out, RE_TRAILING_PERIOD_ZERO, '' ); } break; diff --git a/base/replace/lib/main.js b/base/replace/lib/main.js index 510e7d20..7b65550f 100644 --- a/base/replace/lib/main.js +++ b/base/replace/lib/main.js @@ -42,7 +42,7 @@ * return capitalize( p1 ); * } * -* var out = replace( str, /([^\s]*)/gi, replacer); +* var out = replace( str, /([^\s]*)/gi, replacer ); * // returns 'Oranges And Lemons Say The Bells Of St. Clement\'s' */ function replace( str, search, newval ) { diff --git a/replace/lib/main.js b/replace/lib/main.js index 9d6f7b8d..24bfabed 100644 --- a/replace/lib/main.js +++ b/replace/lib/main.js @@ -60,7 +60,7 @@ var base = require( './../../base/replace' ); * return capitalize( p1 ); * } * -* var out = replace( str, /([^\s]*)/gi, replacer); +* var out = replace( str, /([^\s]*)/gi, replacer ); * // returns 'Oranges And Lemons Say The Bells Of St. Clement\'s' */ function replace( str, search, newval ) {