about summary refs log tree commit diff
path: root/IrcStates/Extensions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IrcStates/Extensions.cs')
-rw-r--r--IrcStates/Extensions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/IrcStates/Extensions.cs b/IrcStates/Extensions.cs
index e604928..181ac80 100644
--- a/IrcStates/Extensions.cs
+++ b/IrcStates/Extensions.cs
@@ -30,7 +30,7 @@ namespace IrcStates
                 : Delegate.CreateDelegate(getType(types.ToArray()), target, methodInfo);
         }
 
-        public static void Update<TKey, TValue>(this Dictionary<TKey, TValue> dict, Dictionary<TKey, TValue> other)
+        public static void UpdateWith<TKey, TValue>(this Dictionary<TKey, TValue> dict, Dictionary<TKey, TValue> other)
         {
             if (dict == null || other == null || !other.Any()) return;