You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/MultiDictionary.cs
+32-6Lines changed: 32 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,8 @@ public static MultiDictionary<TKey, TValue> FromEnumerable(IEnumerable<KeyValueP
56
56
57
57
/// <summary>
58
58
/// Add a key-value-pair to the multidictionary.
59
-
/// If the key is already present, its associated value must satisfy value.Equals(item.Value).
59
+
/// If the key is already present, its associated value must satisfy
60
+
/// keyComparer.Equals(value, item.Value).
60
61
/// </summary>
61
62
/// <param name="item"></param>
62
63
/// <returns>Whether the key is entirely new to the dictionary. If it was already present, we assert that the old value is equal to the new value.</returns>
@@ -136,7 +137,7 @@ public bool Equals(MultiDictionary<TKey, TValue> other)
0 commit comments