From fdd2194c7fe78fea1c633dad038b79e84180f528 Mon Sep 17 00:00:00 2001 From: thyecust Date: Sun, 9 Jul 2023 21:27:10 +0800 Subject: [PATCH] Update async.fsi Similar to L116, the behaviour should be A and C quickly in any order, and then B after 1 second. --- src/FSharp.Core/async.fsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FSharp.Core/async.fsi b/src/FSharp.Core/async.fsi index e48799d9150..35b3e227a5d 100644 --- a/src/FSharp.Core/async.fsi +++ b/src/FSharp.Core/async.fsi @@ -807,7 +807,7 @@ namespace Microsoft.FSharp.Control /// /// printfn "C" /// - /// Prints "C", then "A" quickly, and then "B" 1 second later + /// Prints "C" and "A" quickly in any order, and then "B" 1 second later /// static member Sleep: millisecondsDueTime:int -> Async