Skip to content

Commit 4a6bbb1

Browse files
committed
Add forgotten foldMap to the imports.
The foldMap is in Prelude on base 4.8, that is why I missed it.
1 parent d288dc7 commit 4a6bbb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/seq-properties.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Data.Sequence -- needs to be compiled with -DTESTING for use here
33
import Control.Applicative (Applicative(..))
44
import Control.Arrow ((***))
55
import Data.Array (listArray)
6-
import Data.Foldable (Foldable(foldl, foldl1, foldr, foldr1), toList, all, sum)
6+
import Data.Foldable (Foldable(foldl, foldl1, foldr, foldr1, foldMap), toList, all, sum)
77
import Data.Functor ((<$>), (<$))
88
import Data.Maybe
99
import Data.Monoid (Monoid(..))

0 commit comments

Comments
 (0)