Skip to content

Commit

Permalink
docs: fix typo documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ppeeou committed Jan 10, 2022
1 parent cabb242 commit 90ce656
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Lazy/dropUntil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,9 @@ function async<A, B>(
* dropUntil((a) => a > 3),
* toArray,
* ); // [5, 1, 2]
*
* ```
* see {@link https://fxts.dev/docs/pipe | pipe}, {@link https://fxts.dev/docs/toAsync | toAsync},
* {@link https://fxts.dev/docs/toArray | toArray}
* ```
*/
function dropUntil<A, B = unknown>(
f: (a: A) => B,
Expand Down
2 changes: 1 addition & 1 deletion src/Lazy/dropWhile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ function async<A, B>(
* toArray,
* ); // [3, 4, 5]
*
* ```
* see {@link https://fxts.dev/docs/pipe | pipe}, {@link https://fxts.dev/docs/toAsync | toAsync},
* {@link https://fxts.dev/docs/toArray | toArray}
* ```
*/
function dropWhile<A, B = unknown>(
f: (a: A) => B,
Expand Down
2 changes: 1 addition & 1 deletion src/Lazy/slice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ function _slice<T extends Iterable<unknown> | AsyncIterable<unknown>>(
* slice(1, 3),
* toArray,
* ); // [2, 3]
* ```
*
* see {@link https://fxts.dev/docs/pipe | pipe}, {@link https://fxts.dev/docs/toArray | toArray}
* ```
*/
// prettier-ignore
function slice<T>(
Expand Down

0 comments on commit 90ce656

Please sign in to comment.