Skip to content

Commit

Permalink
housekeeping Fix typo in README (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamradocz committed Jun 19, 2022
1 parent dca242f commit 9e17d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -212,7 +212,7 @@ An observable list can be created as follows:
{
//some code to load data and subscribe
var loader= myService.LoadMyDataObservable().Subscribe(observableList.Add);
var subscriber = myService.GetMySubscriptionsObservable().Subscribe(observableList .Add);
var subscriber = myService.GetMySubscriptionsObservable().Subscribe(observableList.Add);
//dispose of resources
return new CompositeDisposable(loader,subscriber );
});
Expand Down

0 comments on commit 9e17d5e

Please sign in to comment.