Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/release-notes/.FSharp.Core/11.0.100.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
### Fixed

* Fix `Array.exists2` documentation examples to use equal-length arrays; the previous examples would throw `ArgumentException` at runtime instead of returning the documented `false`/`true` values. ([PR #19672](https://github.com/dotnet/fsharp/pull/19672))
* Move `Async.StartChild` to the "Starting Async Computations" docs category alongside `Async.StartChildAsTask`. ([Issue #19667](https://github.com/dotnet/fsharp/issues/19667))
2 changes: 1 addition & 1 deletion src/FSharp.Core/async.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ namespace Microsoft.FSharp.Control
///
/// <returns>A new computation that waits for the input computation to finish.</returns>
///
/// <category index="3">Cancellation and Exceptions</category>
/// <category index="0">Starting Async Computations</category>
///
/// <example id="start-child-1">
/// <code lang="fsharp">
Expand Down
Loading