From cb5b555bdb43854521ab52bc625c1c6d6c4c22df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Kr=C3=BCttli?= Date: Thu, 24 Sep 2020 17:08:07 +0200 Subject: [PATCH] Fix typo in README.md (#408) Documentation contained "connection.Observere(subject)" but looking at the example below, it seems like "connection.Observe(subject)" would be correct. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 278c81493..be8b4d7e8 100755 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ Here are example snippets of using the API to create a connection, subscribe, pu ## RX Usage Importing the namespace `NATS.Client.Rx` you will be able to use an extension method -`connection.Observere(subject)` to turn the connection to an observable. If you have a more +`connection.Observe(subject)` to turn the connection to an observable. If you have a more advanced `IAsyncSubscription`, you can use `asyncSubscription.ToObservable()`. You can now import the namespace `NATS.Client.Rx.Ops`. After this you get builtin support for: