Skip to content

Commit

Permalink
refactor(compose): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 10, 2021
1 parent c0d9e17 commit 7e1855c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/compose/src/comp.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { illegalArity } from "@thi.ng/errors";
import { illegalArity } from "@thi.ng/errors/illegal-arity";
import type { Fn, FnAny } from "@thi.ng/api";

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/compose/src/partial.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type {
FnO7,
FnO8,
} from "@thi.ng/api";
import { illegalArgs } from "@thi.ng/errors";
import { illegalArgs } from "@thi.ng/errors/illegal-arguments";

export function partial<A, T>(fn: FnO<A, T>, a: A): FnAny<T>;
export function partial<A, B, T>(fn: FnO2<A, B, T>, a: A, b: B): FnAny<T>;
Expand Down

0 comments on commit 7e1855c

Please sign in to comment.