Skip to content

Commit

Permalink
Fix typo README.md (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgomez90 authored Feb 13, 2022
1 parent 2dab31f commit 8cff8b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ Sort the observable change set by using the `Sort` operator
```cs
var myPeople = new SourceList<People>();
var myPeopleObservable = myPeople.Connect();
var mySortedObservable = myPeopleObservable.Sort(SortExpressionComparer.Ascending(p => p.Age);
var mySortedObservable = myPeopleObservable.Sort(SortExpressionComparer.Ascending(p => p.Age));
```
or to dynamically change sorting
```cs
Expand Down

0 comments on commit 8cff8b1

Please sign in to comment.