Skip to content

Commit 5bc1f55

Browse files
committed
Fix shadowed variable warning
1 parent 9adcd3c commit 5bc1f55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Data/List/Lazy/Types.purs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,10 @@ instance extendList :: Extend List where
195195
Nil -> nil
196196
Cons a as ->
197197
f l : (foldr go { val: nil, acc: nil } as).val
198-
where
199-
go a { val, acc } =
200-
let acc' = a : acc
201-
in { val: f acc' : val, acc: acc' }
198+
where
199+
go a { val, acc } =
200+
let acc' = a : acc
201+
in { val: f acc' : val, acc: acc' }
202202

203203
newtype NonEmptyList a = NonEmptyList (Lazy (NonEmpty List a))
204204

0 commit comments

Comments
 (0)