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
{