diff --git a/docs/release-notes/.FSharp.Core/11.0.100.md b/docs/release-notes/.FSharp.Core/11.0.100.md
index fae6ac213e..70bbaae06f 100644
--- a/docs/release-notes/.FSharp.Core/11.0.100.md
+++ b/docs/release-notes/.FSharp.Core/11.0.100.md
@@ -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))
diff --git a/src/FSharp.Core/async.fsi b/src/FSharp.Core/async.fsi
index 5c1dadd413..b2fe66ddd1 100644
--- a/src/FSharp.Core/async.fsi
+++ b/src/FSharp.Core/async.fsi
@@ -355,7 +355,7 @@ namespace Microsoft.FSharp.Control
///
/// A new computation that waits for the input computation to finish.
///
- /// Cancellation and Exceptions
+ /// Starting Async Computations
///
///
///