Skip to content

Commit f885343

Browse files
committed
Auto-generated commit
1 parent f3ff1b4 commit f885343

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-09-22)
7+
## Unreleased (2024-09-28)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
1516
- [`b723a6e`](https://github.com/stdlib-js/stdlib/commit/b723a6eaec97adad2da4ffbecb532a3d1ae1e0ba) - **docs:** fix errors in comments and clean-up _(by Philipp Burckhardt)_
1617

1718
</details>

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Christopher Dambamuromo <[email protected]>
2121
2222
Daniel Killenberger <[email protected]>
2323
Daniel Yu <[email protected]>
24+
Debashis Maharana <[email protected]>
2425
Dominik Moritz <[email protected]>
2526
Dorrin Sotoudeh <[email protected]>
2627
EuniceSim142 <[email protected]>
@@ -99,6 +100,7 @@ Xiaochuan Ye <[email protected]>
99100
Yernar Yergaziyev <[email protected]>
100101
101102
nishant-s7 <[email protected]>
103+
olenkabilonizhka <[email protected]>
102104
orimiles5 <[email protected]>
103105
104106

docs/types/test.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,22 @@ import mskrejectMap = require( './index' );
2121

2222
// FUNCTIONS //
2323

24+
/**
25+
* Multiplies a value by two.
26+
*
27+
* @param val - input value
28+
* @returns result
29+
*/
2430
function timesTwo( val: number ): number {
2531
return val * 2;
2632
}
2733

34+
/**
35+
* Identity function.
36+
*
37+
* @param val - input value
38+
* @returns input value
39+
*/
2840
function identity( val: string ): string {
2941
return val;
3042
}

0 commit comments

Comments
 (0)