Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit a1e96c1

Browse files
committed
Remove unused type variable
The PureScript compiler warns about unused type variables as of 0.7.6.
1 parent 582b0b0 commit a1e96c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Optic/Laws/Lens.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module Optic.Laws.Lens where
88
import Prelude (Eq, (&&), (==))
99

1010
-- | A valid `Lens` satisfies all three of the following laws.
11-
validLens :: forall s a b. (Eq a, Eq s) => LensP s a -> s -> a -> a -> a -> Boolean
11+
validLens :: forall s a. (Eq a, Eq s) => LensP s a -> s -> a -> a -> a -> Boolean
1212
validLens l s x y z = getSet l s
1313
&& setGet l s x
1414
&& setSet l s y z

0 commit comments

Comments
 (0)