Skip to content

Commit 2191f40

Browse files
authored
fixed typo in README.md
1 parent e649cab commit 2191f40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Returns the specified number of most common elements along with their counts fro
7070
var counter = new Counter<string>(new[] { "apple", "banana", "apple", "orange", "banana", "banana" });
7171
var elements = counter.MostCommon(2);
7272
// Output:
73-
// { ("banana": 3), ("banana": 2) }
73+
// { ("banana": 3), ("apple": 2) }
7474
```
7575

7676
### Exceptions

0 commit comments

Comments
 (0)