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

Commit d4879fa

Browse files
committed
Merge pull request #28 from tfausak/patch-1
Fix warnings
2 parents 5511131 + a1e96c1 commit d4879fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Optic/Getter.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module Optic.Getter
88

99
import Data.Const (getConst, Const(..))
1010
import Data.Functor.Contravariant ((>$<), Contravariant)
11-
import Data.Profunctor (dimap, rmap, Profunctor)
11+
import Data.Profunctor (dimap, Profunctor)
1212

1313
import Optic.Types (Getting())
1414

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)