Skip to content

Commit 8a0db27

Browse files
committed
chore(docs): improve background explanation
1 parent 1dab49f commit 8a0db27

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docsSrc/Explanations/Background.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ index: 1
99

1010
`IObservable<T>` is .NET way of dealing with lazy event streams with publish/subscribe-pattern called Reactive Programming, "LINQ to Events and async operations".
1111

12-
Where a standard list (IEnumerable) is pull-based, IObservable is a push-based (infinite) list, like "a lazy list of mouse events": when an event happens, the corresponding list gets a new value.
13-
If Nullable is just "a list of 0 or 1", then async-await could be just an IObservable of 0 or 1.
12+
Where a standard list (`IEnumerable`) is pull-based, `IObservable` is a push-based (infinite) list, like "a lazy list of mouse events": when an event happens, the corresponding list gets a new value.
13+
If `Nullable` is just "a list of 0 or 1", then async-await could be just an `IObservable` of 0 or 1.
1414

1515
There are many advantages of using reactive programming and Rx:
1616

0 commit comments

Comments
 (0)