Skip to content

Commit 7ebcf50

Browse files
committed
Fix XML comment
1 parent 9cd6097 commit 7ebcf50

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/FSharpPlus/Extensions/Extensions.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)