diff --git a/CHANGELOG.md b/CHANGELOG.md index 7538771..4631563 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-09-24) +## Unreleased (2024-09-28)
@@ -100,6 +100,8 @@ A total of 2 people contributed to this release. Thank you to the following cont
+- [`b89c97c`](https://github.com/stdlib-js/stdlib/commit/b89c97ce0b812ff0b2aab16b4d77969d44fe3e8c) - **docs:** resolve lint errors in TS declaration files _(by Philipp Burckhardt)_ +- [`ff9fa81`](https://github.com/stdlib-js/stdlib/commit/ff9fa81f917d539f1a11fba5580e1744991a8a11) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_ - [`8f72b43`](https://github.com/stdlib-js/stdlib/commit/8f72b432c0fc81a78641d5689722ecc9671c6f02) - **style:** add missing spaces around parentheses _(by Philipp Burckhardt)_ - [`b723a6e`](https://github.com/stdlib-js/stdlib/commit/b723a6eaec97adad2da4ffbecb532a3d1ae1e0ba) - **docs:** fix errors in comments and clean-up _(by Philipp Burckhardt)_ - [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_ @@ -975,7 +977,7 @@ A total of 9 people contributed to this release. Thank you to the following cont - Golden Kumar - Khaldon - Philipp Burckhardt -- Pranav +- Pranav Goswami - Pratik - Snehil Shah @@ -5004,7 +5006,7 @@ A total of 9 people contributed to this release. Thank you to the following cont - Naresh Jagadeesan - Philipp Burckhardt - Planeshifter -- Pranav +- Pranav Goswami - Roman Stetsyk - Stephannie Jiménez Gacha - Yernar Yergaziyev diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 3a0c547..e7469a9 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -21,6 +21,7 @@ Christopher Dambamuromo Dan Rose Daniel Killenberger Daniel Yu <40680511+Daniel777y@users.noreply.github.com> +Debashis Maharana Dominik Moritz Dorrin Sotoudeh EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com> diff --git a/base/stickycase/docs/types/index.d.ts b/base/stickycase/docs/types/index.d.ts index dbba044..7034da6 100644 --- a/base/stickycase/docs/types/index.d.ts +++ b/base/stickycase/docs/types/index.d.ts @@ -19,24 +19,24 @@ // TypeScript Version: 4.1 /** - * Converts a string to "sticky caps" case. - * - * @param str - input string - * @param p - probability of capitalization (default: 0.5) - * @returns sticky case string - * - * @example - * var str = stickycase( 'hello world' ); - * // returns - * - * @example - * var str = stickycase( 'hello world', 0.2 ); - * // returns - * - * @example - * var str = stickycase( 'hello world', 0.8 ); - * // returns - */ +* Converts a string to "sticky caps" case. +* +* @param str - input string +* @param p - probability of capitalization (default: 0.5) +* @returns sticky case string +* +* @example +* var str = stickycase( 'hello world' ); +* // returns +* +* @example +* var str = stickycase( 'hello world', 0.2 ); +* // returns +* +* @example +* var str = stickycase( 'hello world', 0.8 ); +* // returns +*/ declare function stickycase( str: string, p?: number ): string; diff --git a/to-grapheme-cluster-iterator-right/docs/types/index.d.ts b/to-grapheme-cluster-iterator-right/docs/types/index.d.ts index e841a0c..8708a95 100644 --- a/to-grapheme-cluster-iterator-right/docs/types/index.d.ts +++ b/to-grapheme-cluster-iterator-right/docs/types/index.d.ts @@ -73,7 +73,7 @@ type MapFunction = Nullary | Unary | Binary | Ternary; * Returns an iterator which iterates from right to left over each grapheme cluster in a string. * * @param src - input value -* @param mapFc - function to invoke for each iterated value +* @param mapFcn - function to invoke for each iterated value * @param thisArg - execution context * @returns iterator * diff --git a/to-grapheme-cluster-iterator/docs/types/index.d.ts b/to-grapheme-cluster-iterator/docs/types/index.d.ts index ddc50f8..b18fa63 100644 --- a/to-grapheme-cluster-iterator/docs/types/index.d.ts +++ b/to-grapheme-cluster-iterator/docs/types/index.d.ts @@ -73,7 +73,7 @@ type MapFunction = Nullary | Unary | Binary | Ternary; * Returns an iterator which iterates over each grapheme cluster in a string. * * @param src - input value -* @param mapFc - function to invoke for each iterated value +* @param mapFcn - function to invoke for each iterated value * @param thisArg - execution context * @returns iterator *