Skip to content

Commit

Permalink
Update src/FsToolkit.ErrorHandling.TaskResult/TaskValidation.fs
Browse files Browse the repository at this point in the history
Co-authored-by: Jimmy Byrd <[email protected]>
  • Loading branch information
ratsclub and TheAngryByrd authored Nov 14, 2023
1 parent e062068 commit 209efa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FsToolkit.ErrorHandling.TaskResult/TaskValidation.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

open System.Threading.Tasks

/// TaskValidation<'a, 'err> is defined as Async<Result<'a, 'err list>> meaning you can use many of the functions found in the Result and Async module.
/// TaskValidation<'a, 'err> is defined as Task<Result<'a, 'err list>> meaning you can use many of the functions found in the Result and Async module.
type TaskValidation<'ok, 'error> = Task<Result<'ok, 'error list>>

[<RequireQualifiedAccess>]
Expand Down

0 comments on commit 209efa0

Please sign in to comment.