We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b9df07 commit 314bfdeCopy full SHA for 314bfde
1 file changed
src/FSharpx.Core/Async.fs
@@ -60,7 +60,7 @@ module AsyncExtensions =
60
/// 'Bind' of the 'async' builder. The new overload awaits on
61
/// a standard .NET task
62
type Microsoft.FSharp.Control.AsyncBuilder with
63
- member x.Bind(t:Tasks.Task<'T>, f:'T -> Async<'R>) : Async<'R> = async.Bind(Async.AwaitTask t, f)
64
- member x.Bind(t:Tasks.Task, f:unit -> Async<unit>) : Async<unit> = async.Bind(Async.AwaitTask t, f)
+ member x.Bind(t:Tasks.Task<'T>, f:'T -> Async<'R>) : Async<'R> = async.Bind(Async.AwaitTask t, f)
+ member x.Bind(t:Tasks.Task, f:unit -> Async<'R>) : Async<'R> = async.Bind(Async.AwaitTask t, f)
65
66
#endif
0 commit comments