Skip to content

Commit 5bd8c11

Browse files
committed
fix doc terminology
1 parent b147d91 commit 5bd8c11

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/content/library/AsyncSeq.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# F# Async: FSharp.Control.AsyncSeq
44
55
An AsyncSeq is a sequence in which individual elements are retrieved using an `Async` computation.
6-
It is similar to `seq<'a>` in that subsequent elements are pulled asynchronously. Structurally it is
6+
It is similar to `seq<'a>` in that subsequent elements are pulled on-demand. Structurally it is
77
similar to `list<'a>` with the difference being that each head and tail node or empty node is wrapped
88
in `Async`. `AsyncSeq` also bears similarity to `IObservable<'a>` with the former being based on an "asynchronous pull" and the
99
latter based on a "synchronous push". Analogs for most operations defined for `Seq`, `List` and `IObservable` are also defined for

0 commit comments

Comments
 (0)