Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/FSharp.Control.TaskSeq/TaskExtensions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ open Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicOperators
[<AutoOpen>]
module TaskExtensions =

// Add asynchronous for loop to the 'task' computation builder
type Microsoft.FSharp.Control.TaskBuilder with
// Add asynchronous for loop to the 'task' and 'backgroundTask' computation builders
type TaskBuilderBase with
Comment thread
dsyme marked this conversation as resolved.

/// Used by `For`. F# currently doesn't support `while!`, so this cannot be called directly from the task CE
/// This code is mostly a copy of TaskSeq.WhileAsync.
Expand Down
2 changes: 1 addition & 1 deletion src/FSharp.Control.TaskSeq/TaskExtensions.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace FSharp.Control
[<AutoOpen>]
module TaskExtensions =

type TaskBuilder with
type TaskBuilderBase with

/// <summary>
/// Inside <see cref="task" />, iterate over all values of a <see cref="taskSeq" />.
Expand Down