Skip to content

Commit 2e5580e

Browse files
committed
Fix README
1 parent b0c594a commit 2e5580e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### Types
66

77
data ListT f a where
8-
ListT :: f (Step a (ListT f a)) -> ListT
8+
ListT :: f (Step a (ListT f a)) -> ListT f a
99

1010
data Step a s
1111

@@ -93,8 +93,8 @@
9393
### Types
9494

9595
data List a where
96-
Nil :: List
97-
Cons :: a -> List a -> List
96+
Nil :: List a
97+
Cons :: a -> List a -> List a
9898

9999

100100
### Type Class Instances
@@ -215,4 +215,4 @@
215215

216216
last :: forall a. List a -> a
217217

218-
tail :: forall a. List a -> List a
218+
tail :: forall a. List a -> List a

0 commit comments

Comments
 (0)