File tree Expand file tree Collapse file tree
src/FSharpPlus/Extensions Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ module Extensions =
6161 /// Creates a task Result from a Result where the Ok case is a task.
6262 static member Sequential ( t : Result < Task < 'T >, 'Error >) : Task < Result < 'T , 'Error >> = Result.either ( Task.map Ok) ( Task.result << Error) t
6363
64- /// Creates a task Result from a Result where the Ok case is a task.
64+ /// Creates a task Choice from a Choice where the Choice1Of2 case is a task.
6565 static member Sequential ( t : Choice < Task < 'T >, 'Error >) : Task < Choice < 'T , 'Error >> = Choice.either ( Task.map Choice1Of2) ( Task.result << Choice2Of2) t
6666
6767 #endif
@@ -73,7 +73,7 @@ module Extensions =
7373 /// Creates a task Result from a Result where the Ok case is a task.
7474 static member Sequential ( t : Result < ValueTask < 'T >, 'Error >) : ValueTask < Result < 'T , 'Error >> = Result.either ( ValueTask.map Ok) ( ValueTask.result << Error) t
7575
76- /// Creates a task Result from a Result where the Ok case is a task.
76+ /// Creates a task Choice from a Choice where the Choice1Of2 case is a task.
7777 static member Sequential ( t : Choice < ValueTask < 'T >, 'Error >) : ValueTask < Choice < 'T , 'Error >> = Choice.either ( ValueTask.map Choice1Of2) ( ValueTask.result << Choice2Of2) t
7878
7979 #endif
You can’t perform that action at this time.
0 commit comments