Skip to content

Commit d4db98b

Browse files
Fix compiler warnings about 'kind Region'
1 parent 16d2e4f commit d4db98b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Control/Monad/ST.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Control.Monad.ST (module Internal) where
22

3-
import Control.Monad.ST.Internal (ST, kind Region, run, while, for, foreach) as Internal
3+
import Control.Monad.ST.Internal (ST, Region, run, while, for, foreach) as Internal

src/Control/Monad/ST/Global.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module Control.Monad.ST.Global
55

66
import Prelude
77

8-
import Control.Monad.ST (ST, kind Region)
8+
import Control.Monad.ST (ST, Region)
99
import Effect (Effect)
1010
import Unsafe.Coerce (unsafeCoerce)
1111

src/Control/Monad/ST/Internal.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Control.Monad.ST.Internal
2-
( kind Region
2+
( Region
33
, ST
44
, run
55
, while

0 commit comments

Comments
 (0)