From fb67e38eb27e18736e03f09a443ca5d57ad9605d Mon Sep 17 00:00:00 2001 From: Andrey Dobrikov Date: Sun, 1 Aug 2021 12:42:55 -0400 Subject: [PATCH] Update README.md Fixes typo in AsObservable. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8bc11d4..a812c12 100644 --- a/README.md +++ b/README.md @@ -461,7 +461,7 @@ public static ValueTask FirstAsync(this ISubscriber` overload can filter messages by predicate (internally implemented with PredicateFilter, where Order is int.MinValue and is always checked first). -`AsObservable` can convert message pipeline to `IObservable`, it can handle by Reactive Extensions(in Unity, you can use `UniRx`). `AsObervable` exists in sync subscriber(keyless, keyed, buffered). +`AsObservable` can convert message pipeline to `IObservable`, it can handle by Reactive Extensions(in Unity, you can use `UniRx`). `AsObservable` exists in sync subscriber(keyless, keyed, buffered). `AsAsyncEnumerable` can convert message pipeline to `IAsyncEnumerable`, it can handle by async LINQ and async foreach. `AsAsyncEnumerable` exists in async subscriber(keyless, keyed, buffered).