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

Commit 6bd0ae9

Browse files
committed
Merge pull request #9 from purescript-contrib/unfoldable-fix
Fix imports for new unfoldable
2 parents 80f0ddd + 31f0894 commit 6bd0ae9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Base.purs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ module Base
88
, module Data.Foldable
99
, module Data.Traversable
1010
, module Data.List
11-
11+
1212
, module Control.Apply
1313
, module Control.Bind
1414
, module Control.Monad
1515
, module Control.MonadPlus
1616
, module Control.Alt
1717
, module Control.Plus
18-
18+
1919
, module Control.Monad.Eff
2020
, module Control.Monad.Eff.Console
2121
) where
@@ -28,7 +28,7 @@ import Data.Monoid
2828
import Data.Unfoldable
2929
import Data.Foldable
3030
import Data.Traversable
31-
import Data.List
31+
import Data.List hiding (singleton, replicate)
3232

3333
import Control.Apply
3434
import Control.Bind

0 commit comments

Comments
 (0)