Skip to content

Commit 03ef951

Browse files
committed
WIP
1 parent f24bad6 commit 03ef951

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

chain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* ## See also
2424
*
25-
* - {@link module:iterutil/async/chain.chain} for the asynchronous version.
25+
* - {@link async/chain.chain} for the asynchronous version.
2626
*/
2727
export function* chain<T extends Iterable<unknown>[]>(
2828
...iterables: T

compact.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Removes all nullish ({@linkcode null} or {@linkcode undefined}) values from an iterable.
2+
* Removes all nullish (`null` or `undefined`) values from an iterable.
33
*
44
* @param iterable - The iterable to compact.
55
* @returns The compacted iterable.
@@ -13,9 +13,9 @@
1313
* ```
1414
*
1515
* ## See also
16-
* - {@link module:iterutil/async/compact.compact} for the asynchronous version.
17-
* - {@link module:iterutil/compress.compress} to select elements based on a selector iterable.
18-
* - {@link module:iterutil/filter.filter} to remove values based on a predicate.
16+
* - {@link module:@core/iterutil/async/compact.compact} for the asynchronous version.
17+
* - {@link module:/compress.compress} to select elements based on a selector iterable.
18+
* - {@link module:filter.filter} to remove values based on a predicate.
1919
*/
2020
export function* compact<T>(iterable: Iterable<T>): Iterable<NonNullable<T>> {
2121
for (const value of iterable) {

0 commit comments

Comments
 (0)