Skip to content

Commit 3ba48e9

Browse files
committed
docs: fix @linkcode URLs
1 parent 815ff9e commit 3ba48e9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+150
-150
lines changed

async/chain.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* The chained iterable will yield the elements of the first iterable, then the
55
* elements of the second iterable, and so on.
66
*
7-
* Use {@linkcode https://jsr.io/@core/iterutil/async/zip zip} to zip iterables.
8-
* Use {@linkcode https://jsr.io/@core/iterutil/chain chain} to chain iterables synchronously.
7+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/zip/~/zip zip} to zip iterables.
8+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/chain/~/chain chain} to chain iterables synchronously.
99
*
1010
* @param iterables The iterables to chain.
1111
* @returns The chained iterable.

async/chunked.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
*
44
* The last chunk may have less than `size` elements.
55
*
6-
* Use {@linkcode https://jsr.io/@core/iterutil/async/flatten flatten} to flatten the chunks.
7-
* Use {@linkcode https://jsr.io/@core/iterutil/chunked chunked} to chunk iterables synchronously.
6+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/flatten/~/flatten flatten} to flatten the chunks.
7+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/chunked/~/chunked chunked} to chunk iterables synchronously.
88
*
99
* @param iterable The iterable to chunk.
1010
* @param size The size of each chunk.

async/compact.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* Removes all nullish (`null` or `undefined`) values from an iterable.
33
*
4-
* Use {@linkcode https://jsr.io/@core/iterutil/async/compress compress} to remove values based on an iterable.
5-
* Use {@linkcode https://jsr.io/@core/iterutil/async/filter filter} to remove values based on a function.
6-
* Use {@linkcode https://jsr.io/@core/iterutil/compact compact} to compact iterables synchronously.
4+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/compress/~/compress compress} to remove values based on an iterable.
5+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/filter/~/filter filter} to remove values based on a function.
6+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/compact/~/compact compact} to compact iterables synchronously.
77
*
88
* @param iterable The iterable to compact.
99
* @returns The compacted iterable.

async/compress.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* If the input iterable is shorter than the selector iterable, the output will
1111
* be truncated to the length of the input iterable.
1212
*
13-
* Use {@linkcode https://jsr.io/@core/iterutil/async/compact compact} to remove nullish values.
14-
* Use {@linkcode https://jsr.io/@core/iterutil/async/filter filter} to remove values based on a function.
15-
* Use {@linkcode https://jsr.io/@core/iterutil/compress compress} to compress iterables synchronously.
13+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/compact/~/compact compact} to remove nullish values.
14+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/filter/~/filter filter} to remove values based on a function.
15+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/compress/~/compress compress} to compress iterables synchronously.
1616
*
1717
* @param iterable The iterable to compress.
1818
* @param selectors The selectors to use.

async/cycle.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
* Returns an infinite iterable that cycles through the given iterable.
33
*
4-
* Use {@linkcode https://jsr.io/@core/iterutil/async/take take} to limit the number of items of the cycled iterable.
5-
* Use {@linkcode https://jsr.io/@core/iterutil/cycle cycle} to cycle the iterable synchronously.
4+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/take/~/take take} to limit the number of items of the cycled iterable.
5+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/cycle/~/cycle cycle} to cycle the iterable synchronously.
66
*
77
* @param iterable The iterable to cycle.
88
* @returns The cycled iterable.

async/drop.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* Drops the first `limit` items from the iterable.
33
*
4-
* Use {@linkcode https://jsr.io/@core/iterutil/async/drop-while dropWhile} to drop items while a condition is met.
5-
* Use {@linkcode https://jsr.io/@core/iterutil/async/take take} to take a specific number of items from an iterable.
6-
* Use {@linkcode https://jsr.io/@core/iterutil/drop drop} to drop items synchronously.
4+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/drop-while/~/dropWhile dropWhile} to drop items while a condition is met.
5+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/take/~/take take} to take a specific number of items from an iterable.
6+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/drop/~/drop drop} to drop items synchronously.
77
*
88
* @param iterable The iterable to drop items from.
99
* @param limit The number of items to drop. It must be 0 or positive safe integer.

async/drop_while.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* The first element that does not match the predicate is included in the output.
55
* If the predicate never returns false, the output will be an empty iterable.
66
*
7-
* Use {@linkcode https://jsr.io/@core/iterutil/async/drop drop} to drop a specific number of elements.
8-
* Use {@linkcode https://jsr.io/@core/iterutil/async/take take} to take a specific number of elements.
9-
* Use {@linkcode https://jsr.io/@core/iterutil/drop-while dropWhile} to drop elements synchronously.
7+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/drop/~/drop drop} to drop a specific number of elements.
8+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/take/~/take take} to take a specific number of elements.
9+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/drop-while/~/dropWhile dropWhile} to drop elements synchronously.
1010
*
1111
* @param iterable The iterable to drop elements from.
1212
* @param fn The predicate function to drop elements with.

async/enumerate.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* If `start` is not provided, it defaults to `0`.
66
* If `step` is not provided, it defaults to `1`.
77
*
8-
* Use {@linkcode https://jsr.io/@core/iterutil/async/zip zip} to zip iterable with other iterables.
9-
* Use {@linkcode https://jsr.io/@core/iterutil/async/count count} to generate an infinite sequence of numbers.
10-
* Use {@linkcode https://jsr.io/@core/iterutil/enumerate enumerate} to enumerate synchronously.
8+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/zip/~/zip zip} to zip iterable with other iterables.
9+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/count/~/count count} to generate an infinite sequence of numbers.
10+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/enumerate/~/enumerate enumerate} to enumerate synchronously.
1111
*
1212
* @param iterable The iterable to enumerate.
1313
* @param start The starting index.

async/every.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
*
99
* If the iterable is empty, this function returns true.
1010
*
11-
* Use {@linkcode https://jsr.io/@core/iterutil/async/some some} to check if any element satisfies the function.
12-
* Use {@linkcode https://jsr.io/@core/iterutil/every every} to check synchronously.
11+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/some/~/some some} to check if any element satisfies the function.
12+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/every/~/every every} to check synchronously.
1313
*
1414
* @param iterable The iterable to test.
1515
* @param fn The function to test with.

async/filter.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
22
* Filters an iterable based on a function.
33
*
4-
* Use {@linkcode https://jsr.io/@core/iterutil/async/compact compact} to remove nullish values.
5-
* Use {@linkcode https://jsr.io/@core/iterutil/async/compress compress} to remove values based on an iterable.
6-
* Use {@linkcode https://jsr.io/@core/iterutil/async/map map} to transform the values.
7-
* Use {@linkcode https://jsr.io/@core/iterutil/async/reduce reduce} to reduce the values.
8-
* Use {@linkcode https://jsr.io/@core/iterutil/filter filter} to filter synchronously.
4+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/compact/~/compact compact} to remove nullish values.
5+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/compress/~/compress compress} to remove values based on an iterable.
6+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/map/~/map map} to transform the values.
7+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/async/reduce/~/reduce reduce} to reduce the values.
8+
* Use {@linkcode https://jsr.io/@core/iterutil/doc/filter/~/filter filter} to filter synchronously.
99
*
1010
* @params iterable The iterable to filter.
1111
* @params fn The function to filter with.

0 commit comments

Comments
 (0)