Skip to content

Commit b88de04

Browse files
committed
Merge pull request #7 from telser/purescript-0.8-warnings
Fix warnings generated by purescript-0.8.0
2 parents edca4aa + db89ac0 commit b88de04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Control/Monad/Eff/Ref.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-- | local scope.
77
module Control.Monad.Eff.Ref where
88

9-
import Prelude
9+
import Prelude (Unit, unit)
1010
import Control.Monad.Eff (Eff())
1111

1212
-- | The effect associated with the use of global mutable variables.

src/Control/Monad/Eff/Ref/Unsafe.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module Control.Monad.Eff.Ref.Unsafe where
44

55
import Control.Monad.Eff (Eff())
6-
import Control.Monad.Eff.Ref
6+
import Control.Monad.Eff.Ref (REF)
77
import Control.Monad.Eff.Unsafe (unsafeInterleaveEff)
88

99
-- | This handler function unsafely removes the `Ref` effect from an

0 commit comments

Comments
 (0)