Skip to content

Commit 06fcf47

Browse files
authored
collections cleanup
1 parent 4853293 commit 06fcf47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fsharp/FSharp.Core/list.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ namespace Microsoft.FSharp.Collections
153153
let nth list index = item index list
154154

155155
[<CompiledName("Choose")>]
156-
let choose f xs = Microsoft.FSharp.Primitives.Basics.List.choose f xs
156+
let choose f xs = List.choose f xs
157157

158158
[<CompiledName("SplitAt")>]
159159
let splitAt index (list:'T list) = List.splitAt index list
@@ -223,7 +223,7 @@ namespace Microsoft.FSharp.Collections
223223

224224
[<CompiledName("Pairwise")>]
225225
let pairwise (list: 'T list) =
226-
Microsoft.FSharp.Primitives.Basics.List.pairwise list
226+
List.pairwise list
227227

228228
[<CompiledName("Reduce")>]
229229
let reduce f list =

0 commit comments

Comments
 (0)