File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/FsToolkit.ErrorHandling Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -339,13 +339,13 @@ module Option =
339339 }
340340
341341 /// <summary>
342- /// Maps a <c>Task</c> function over an <c>option</c>, returning a <c>Task<'T option></c><br/>
342+ /// Maps a <c>Task</c> function over an <c>option</c>, returning a <c>Task<'U option></c><br/>
343343 ///
344344 /// Documentation is found here: <href>https://demystifyfp.gitbook.io/fstoolkit-errorhandling/fstoolkit.errorhandling/option/traversetask</href>
345345 /// </summary>
346346 /// <param name="f">The function to map over the <c>option</c>.</param>
347347 /// <param name="opt">The <c>option</c> to map over.</param>
348- /// <returns>A <c>Task<'T option></c> with the mapped value.</returns>
348+ /// <returns>A <c>Task<'U option></c> with the mapped value.</returns>
349349 let inline traverseTask
350350 ( [<InlineIfLambda>] f : 'T -> Task < 'U >)
351351 ( opt : Option < 'T >)
@@ -407,7 +407,7 @@ module Option =
407407 /// </summary>
408408 /// <param name="f">The function to map over the Option.</param>
409409 /// <param name="opt">The Option to map over.</param>
410- /// <returns>An Async Option with the mapped value.</returns>
410+ /// <returns>An <c> Async< Option<'U>></c> with the mapped value.</returns>
411411 let inline traverseAsync
412412 ( [<InlineIfLambda>] f : 'T -> Async < 'U >)
413413 ( opt : Option < 'T >)
You can’t perform that action at this time.
0 commit comments