Skip to content

Commit 690ed90

Browse files
committed
Fix XML comments
1 parent 07c2c47 commit 690ed90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/FsToolkit.ErrorHandling/Option.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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&lt;'T option&gt;</c><br/>
342+
/// Maps a <c>Task</c> function over an <c>option</c>, returning a <c>Task&lt;'U option&gt;</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&lt;'T option&gt;</c> with the mapped value.</returns>
348+
/// <returns>A <c>Task&lt;'U option&gt;</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&lt;Option&lt;'U&gt;&gt;</c> with the mapped value.</returns>
411411
let inline traverseAsync
412412
([<InlineIfLambda>] f: 'T -> Async<'U>)
413413
(opt: Option<'T>)

0 commit comments

Comments
 (0)