Skip to content

Commit

Permalink
chore: run deno fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
baetheus committed Mar 14, 2024
1 parent ab4d6ca commit 2c259c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ import { pipe } from "jsr:@baetheus/fun/fn";

pipe(
A.range(5), // get 5 numbers 0-4
A.map(n => n * n), // square them
console.log // [ 0, 1, 4, 9, 16 ]
A.map((n) => n * n), // square them
console.log, // [ 0, 1, 4, 9, 16 ]
);
```

Expand Down
1 change: 0 additions & 1 deletion kind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ export interface Fix<A> extends Kind {
*/
const HoldSymbol = Symbol("Hold");


/**
* The Hold interface allows one to trick the typescript compiler into holding
* onto type information that it would otherwise discard. This is useful when
Expand Down

0 comments on commit 2c259c8

Please sign in to comment.