Skip to content

Commit 784f3eb

Browse files
authored
Update AsyncSeq.fsi
1 parent 4026802 commit 784f3eb

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/FSharp.Control.AsyncSeq/AsyncSeq.fsi

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,6 @@ module AsyncSeq =
9090
/// also the AsyncSeq.collect function.
9191
member For : source:AsyncSeq<'T> * action:('T -> AsyncSeq<'TResult>) -> AsyncSeq<'TResult>
9292

93-
/// Implements "return" for the asyncSeq computation builder.
94-
// Commented because there does not seem to be a way to specify the correct parameter type to the compiler.
95-
// What is needed is one parameter of type unit, but the below is interpreted as zero parameters.
96-
//member Return : unit -> AsyncSeq<'T>
97-
9893
/// Implements "try-finally" for the asyncSeq computation builder.
9994
member TryFinally : body:AsyncSeq<'T> * compensation:(unit -> unit) -> AsyncSeq<'T>
10095

@@ -534,4 +529,4 @@ module AsyncSeqSrc =
534529
/// Creates an async sequence which yields values as they are put into the source and terminates
535530
/// when the source is closed. This sequence will yield items starting with the next put.
536531
/// Many async sequences can be created from once source.
537-
val toAsyncSeq : src:AsyncSeqSrc<'T> -> AsyncSeq<'T>
532+
val toAsyncSeq : src:AsyncSeqSrc<'T> -> AsyncSeq<'T>

0 commit comments

Comments
 (0)