Skip to content

Commit 99ef2ad

Browse files
committed
spelling: works
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
1 parent 9b6b53a commit 99ef2ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/FSharp.Core/array.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2492,7 +2492,7 @@ module Array =
24922492
| _ ->
24932493
let left, right = partitioningFunc segment
24942494
// If either of the two is too small, sort small segments straight away.
2495-
// If the other happens to be big, leave it with all workes in its recursive step
2495+
// If the other happens to be big, leave it with all works in its recursive step
24962496
if left.Count <= minChunkSize || right.Count <= minChunkSize then
24972497
sortChunk left freeWorkers
24982498
sortChunk right freeWorkers

vsintegration/tests/UnitTests/LegacyLanguageService/Tests.LanguageService.ParameterInfo.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1989,7 +1989,7 @@ We really need to rewrite some code paths here to use the real parse tree rather
19891989
[<Test>]
19901990
[<Category("Query")>]
19911991
// ParamInfo works normally for calls as query operator arguments
1992-
// wroks fine In nested queries
1992+
// works fine In nested queries
19931993
member public this.``Query.InNestedQuery``() =
19941994
let fileContents = """
19951995
let tuples = [ (1, 8, 9); (56, 45, 3)]

0 commit comments

Comments
 (0)