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 28, 2024
1 parent 3ed6b15 commit 10da2b5
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 23 deletions.
8 changes: 5 additions & 3 deletions 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-24)
## Unreleased (2024-09-28)

<section class="packages">

Expand Down Expand Up @@ -100,6 +100,8 @@ A total of 2 people contributed to this release. Thank you to the following cont

<details>

- [`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)_
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Christopher Dambamuromo <[email protected]>
Dan Rose <[email protected]>
Daniel Killenberger <[email protected]>
Daniel Yu <[email protected]>
Debashis Maharana <[email protected]>
Dominik Moritz <[email protected]>
Dorrin Sotoudeh <[email protected]>
EuniceSim142 <[email protected]>
Expand Down
36 changes: 18 additions & 18 deletions base/stickycase/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 <string>
*
* @example
* var str = stickycase( 'hello world', 0.2 );
* // returns <string>
*
* @example
* var str = stickycase( 'hello world', 0.8 );
* // returns <string>
*/
* 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 <string>
*
* @example
* var str = stickycase( 'hello world', 0.2 );
* // returns <string>
*
* @example
* var str = stickycase( 'hello world', 0.8 );
* // returns <string>
*/
declare function stickycase( str: string, p?: number ): string;


Expand Down
2 changes: 1 addition & 1 deletion to-grapheme-cluster-iterator-right/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down
2 changes: 1 addition & 1 deletion to-grapheme-cluster-iterator/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down

0 comments on commit 10da2b5

Please sign in to comment.