From cd731e580d2f5a621a83eb43d3921aa286bd1ddd Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Sat, 8 Jul 2017 18:24:45 +0200 Subject: [PATCH] Added missing doc comment. --- src/Avalonia.Base/Utilities/WeakSubscriptionManager.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Avalonia.Base/Utilities/WeakSubscriptionManager.cs b/src/Avalonia.Base/Utilities/WeakSubscriptionManager.cs index 1455feb6ff..f1e8fa6f9b 100644 --- a/src/Avalonia.Base/Utilities/WeakSubscriptionManager.cs +++ b/src/Avalonia.Base/Utilities/WeakSubscriptionManager.cs @@ -17,12 +17,11 @@ namespace Avalonia.Utilities /// /// Subscribes to an event on an object using a weak subscription. /// - /// The type of the event arguments. + /// The type of the target. + /// The type of the event arguments. /// The event source. /// The name of the event. /// The subscriber. - /// The type of the target. - /// The type of the event args. public static void Subscribe(TTarget target, string eventName, IWeakSubscriber subscriber) where TEventArgs : EventArgs {