Skip to content

Commit

Permalink
spelling: works
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
  • Loading branch information
jsoref committed Nov 1, 2023
1 parent 7c0b94a commit afb6098
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/FSharp.Core/array.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2492,7 +2492,7 @@ module Array =
| _ ->
let left, right = partitioningFunc segment
// If either of the two is too small, sort small segments straight away.
// If the other happens to be big, leave it with all workes in its recursive step
// If the other happens to be big, leave it with all works in its recursive step
if left.Count <= minChunkSize || right.Count <= minChunkSize then
sortChunk left freeWorkers
sortChunk right freeWorkers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1989,7 +1989,7 @@ We really need to rewrite some code paths here to use the real parse tree rather
[<Test>]
[<Category("Query")>]
// ParamInfo works normally for calls as query operator arguments
// wroks fine In nested queries
// works fine In nested queries
member public this.``Query.InNestedQuery``() =
let fileContents = """
let tuples = [ (1, 8, 9); (56, 45, 3)]
Expand Down

0 comments on commit afb6098

Please sign in to comment.