Skip to content

Commit 6dd668e

Browse files
remove extra space
1 parent f7c0230 commit 6dd668e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/Foldable.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ product :: forall f. (Foldable f) => f Number -> Number
9595
product = foldl (*) 1
9696

9797
elem :: forall a f. (Eq a, Foldable f) => a -> f a -> Boolean
98-
elem = any <<< (==)
98+
elem = any <<< (==)
9999

100100
notElem :: forall a f. (Eq a, Foldable f) => a -> f a -> Boolean
101101
notElem x = not <<< elem x

0 commit comments

Comments
 (0)