diff --git a/src/FsToolkit.ErrorHandling/Option.fs b/src/FsToolkit.ErrorHandling/Option.fs
index 608e7d3e..93ac40c3 100644
--- a/src/FsToolkit.ErrorHandling/Option.fs
+++ b/src/FsToolkit.ErrorHandling/Option.fs
@@ -339,17 +339,17 @@ module Option =
}
///
- /// Maps a Task function over an option, returning a Task<'T option>
+ /// Maps a Task function over an option, returning a Task<'U option>
///
/// Documentation is found here: https://demystifyfp.gitbook.io/fstoolkit-errorhandling/fstoolkit.errorhandling/option/traversetask
///
/// The function to map over the option.
/// The option to map over.
- /// A Task<'T option> with the mapped value.
+ /// A Task<'U option> with the mapped value.
let inline traverseTask
- ([] f: 'T -> Task<'T>)
+ ([] f: 'T -> Task<'U>)
(opt: Option<'T>)
- : Task