diff --git a/docs/release-notes/.FSharp.Core/10.0.100.md b/docs/release-notes/.FSharp.Core/10.0.100.md index 9d348a8663c..bf06a7f8920 100644 --- a/docs/release-notes/.FSharp.Core/10.0.100.md +++ b/docs/release-notes/.FSharp.Core/10.0.100.md @@ -1,5 +1,7 @@ ### Fixed +* Correct a typo in docs for List.sort ([PR #18938](https://github.com/dotnet/fsharp/pull/18938)) + ### Added * Enable more `string` optimizations by adding `when 'T : Enum` library-only library-only static optimization constraint. ([PR #18546](https://github.com/dotnet/fsharp/pull/18546)) diff --git a/src/FSharp.Core/list.fsi b/src/FSharp.Core/list.fsi index c77e26ddaf0..953014da50c 100644 --- a/src/FSharp.Core/list.fsi +++ b/src/FSharp.Core/list.fsi @@ -1978,7 +1978,7 @@ module List = /// /// List.sort input /// - /// Evaluates to [1; 1 3; 4; 6; 8]. + /// Evaluates to [1; 1; 3; 4; 6; 8]. /// [] val sort: list:'T list -> 'T list when 'T : comparison