Skip to content

Commit 109796a

Browse files
committed
Merge pull request #27 from zudov/unused-variable
Remove unused type variable
2 parents 6ac33b6 + eae62f6 commit 109796a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Control/Lazy.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ class Lazy l where
1616
-- | `fix` defines a value as the fixed point of a function.
1717
-- |
1818
-- | The `Lazy` instance allows us to generate the result lazily.
19-
fix :: forall l a. (Lazy l) => (l -> l) -> l
19+
fix :: forall l. (Lazy l) => (l -> l) -> l
2020
fix f = defer (\_ -> f (fix f))

0 commit comments

Comments
 (0)