Skip to content

Commit eeeed53

Browse files
authored
Add missing namespace
1 parent 784ff41 commit eeeed53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FSharpPlus/Data/ZipList.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ open FSharpPlus
99
type ZipList<'s> = ZipList of 's seq with
1010
member this.Item n = let (ZipList s) = this in Seq.item n s
1111

12-
interface IEnumerable<'s> with member x.GetEnumerator () = (let (ZipList x) = x in x).GetEnumerator ()
12+
interface System.Collections.Generic.IEnumerable<'s> with member x.GetEnumerator () = (let (ZipList x) = x in x).GetEnumerator ()
1313
interface System.Collections.IEnumerable with member x.GetEnumerator () = (let (ZipList x) = x in x).GetEnumerator () :> System.Collections.IEnumerator
1414

1515
/// Basic operations on ZipList

0 commit comments

Comments
 (0)