Skip to content

Commit

Permalink
fix(checks): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nkint authored Mar 10, 2020
1 parent be94f59 commit 4e4a6e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/checks/src/is-positive.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const isPosititve = (x: any): x is number =>
export const isPositive = (x: any): x is number =>
typeof x === "number" && x > 0;

0 comments on commit 4e4a6e1

Please sign in to comment.