diff --git a/Examples/ExamplesUpdateReceiver.md b/Examples/ExamplesUpdateReceiver.md new file mode 100644 index 0000000..5a9e299 --- /dev/null +++ b/Examples/ExamplesUpdateReceiver.md @@ -0,0 +1,8 @@ +--- +layout: default +title: Update Receiver +parent: Examples +nav_order: 5 +--- +# Update Receiver bot +[Click here to view the source Code on Github](https://github.com/RxTelegram/RxTelegram.Bot.Examples/blob/master/UpdateReceiver/Program.cs) diff --git a/HandlingUpdates/HandlingUpdatesAllUpdates.md b/HandlingUpdates/HandlingUpdatesAllUpdates.md index b986ec0..193c8df 100644 --- a/HandlingUpdates/HandlingUpdatesAllUpdates.md +++ b/HandlingUpdates/HandlingUpdatesAllUpdates.md @@ -8,7 +8,7 @@ nav_order: 3 # Getting all updates ## Basics -.net unfortunately does not provide an implementation for the IObservable interface, so we recommend you to install the Nuget package System.Reactive.Core. This will allow you to subscribe to any IObservable interface provided by our library as follows. +.net unfortunately does not provide an implementation for the IObservable interface, so we recommend you to install the Nuget package [System.Reactive](https://www.nuget.org/packages/System.Reactive/6.0.1-preview.1). This will allow you to subscribe to any IObservable interface provided by our library as follows. ``` csharp .Subscribe(next => { }, exception => { })