Skip to content

Commit 37551d7

Browse files
committed
change from use to let
1 parent 12eb039 commit 37551d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fsharp/FSharp.Core/local.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ module internal List =
7474
cons
7575

7676
let countBy (dict:Dictionary<_, int>) (keyf:'T -> 'Key) =
77-
use mutable ie = dict.GetEnumerator()
77+
let mutable ie = dict.GetEnumerator()
7878
if not (ie.MoveNext()) then []
7979
else
8080
let res = freshConsNoTail (keyf ie.Current.Key, ie.Current.Value)

0 commit comments

Comments
 (0)