diff --git a/README.md b/README.md index 731760a..653607d 100644 --- a/README.md +++ b/README.md @@ -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 ] ); ``` diff --git a/kind.ts b/kind.ts index e38bd25..0bb93b5 100644 --- a/kind.ts +++ b/kind.ts @@ -120,7 +120,6 @@ export interface Fix 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