We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e649cab commit 2191f40Copy full SHA for 2191f40
1 file changed
README.md
@@ -70,7 +70,7 @@ Returns the specified number of most common elements along with their counts fro
70
var counter = new Counter<string>(new[] { "apple", "banana", "apple", "orange", "banana", "banana" });
71
var elements = counter.MostCommon(2);
72
// Output:
73
-// { ("banana": 3), ("banana": 2) }
+// { ("banana": 3), ("apple": 2) }
74
```
75
76
### Exceptions
0 commit comments