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

Commit 2fa4b8b

Browse files
committed
style fix suggested by hdgarrood
1 parent ba06add commit 2fa4b8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/Map.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ toUnfoldable m = unfoldr go (m : Nil) where
380380
Two left k v right ->
381381
Just $ Tuple (Tuple k v) (left : right : tl)
382382
Three left k1 v1 mid k2 v2 right ->
383-
Just $ Tuple (Tuple k1 v1) ((singleton k2 v2) : left : mid : right : tl)
383+
Just $ Tuple (Tuple k1 v1) (singleton k2 v2 : left : mid : right : tl)
384384

385385
-- | Get a list of the keys contained in a map
386386
keys :: forall k v. Map k v -> List k

0 commit comments

Comments
 (0)