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
1 change: 1 addition & 0 deletions src/FSharp.Control.TaskSeq/TaskSeqBuilder.fs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ module Internal = // cannot be marked with 'internal' scope
|> raise

// deprecated from 0.4.0, see FSI file
[<Obsolete "From version 0.4.0 onward, 'TaskSeq<_>' is deprecated in favor of 'TaskSeq<_>'. It will be removed in an upcoming release.">]
type taskSeq<'T> = IAsyncEnumerable<'T>

// the proper type from 0.4.0 onwards, see FSI file
Expand Down
2 changes: 2 additions & 0 deletions src/FSharp.Control.TaskSeq/TaskSeqBuilder.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ module Internal =
val inline raiseNotImpl: unit -> 'a

/// <summary>
/// Represents a <see cref="task sequence" /> and is the output of using the <paramref name="taskSeq{...}" />
/// computation expression from this library. It is an alias for <see cref="T:System.IAsyncEnumerable&lt;_>" />.
/// The type <paramref name="taskSeq&lt;_>" /> is deprecated since version 0.4.0,
/// please use <paramref name="TaskSeq&lt;_>" /> in its stead. See <see cref="T:FSharp.Control.TaskSeq&lt;_>" />.
/// </summary>
Expand Down