Skip to content

Commit e36775b

Browse files
committed
Auto-generated commit
1 parent 1b958b2 commit e36775b

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
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-21)
7+
## Unreleased (2024-09-28)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`b89c97c`](https://github.com/stdlib-js/stdlib/commit/b89c97ce0b812ff0b2aab16b4d77969d44fe3e8c) - **docs:** resolve lint errors in TS declaration files _(by Philipp Burckhardt)_
1516
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(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 <chridam@gmail.com>
2121
Dan Rose <danoftheroses@gmail.com>
2222
Daniel Killenberger <daniel.killenberger@gmail.com>
2323
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
24+
Debashis Maharana <debashismaharana7854@gmail.com>
2425
Dominik Moritz <domoritz@gmail.com>
2526
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
2627
EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
@@ -99,6 +100,7 @@ Xiaochuan Ye <tap91624@gmail.com>
99100
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
100101
naveen <stupiddint@gmail.com>
101102
nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
103+
olenkabilonizhka <62379231+olenkabilonizhka@users.noreply.github.com>
102104
orimiles5 <97595296+orimiles5@users.noreply.github.com>
103105
rainn <88160429+AmCodesLame@users.noreply.github.com>
104106
rei2hu <reimu@reimu.ws>

docs/types/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ type PredicateCallback = PredicateNullary | PredicateUnary | PredicateBinary;
6262
type Predicate = ( clbk: PredicateCallback ) => void;
6363

6464
/**
65-
* Determines the relationship between two types `T` and `U`, and returns:
66-
*
67-
* - `T` if `T` is assignable to `U`,
68-
* - `U` if `U` is assignable to `T`,
69-
* - A union of `U | T` as a fallback.
70-
*/
65+
* Determines the relationship between two types `T` and `U`, and returns:
66+
*
67+
* - `T` if `T` is assignable to `U`,
68+
* - `U` if `U` is assignable to `T`,
69+
* - A union of `U | T` as a fallback.
70+
*/
7171
type ResultFunction<T, U> = T extends U ? T : U extends T ? U : U | T;
7272

7373
/**

0 commit comments

Comments
 (0)