diff --git a/src/Avalonia.Base/Utilities/WeakEventHandlerManager.cs b/src/Avalonia.Base/Utilities/WeakEventHandlerManager.cs
index 0ade1af249..b59ed166bc 100644
--- a/src/Avalonia.Base/Utilities/WeakEventHandlerManager.cs
+++ b/src/Avalonia.Base/Utilities/WeakEventHandlerManager.cs
@@ -19,6 +19,7 @@ namespace Avalonia.Utilities
///
/// The type of the target.
/// The type of the event arguments.
+ /// The type of the subscriber.
/// The event source.
/// The name of the event.
/// The subscriber.
@@ -40,6 +41,7 @@ namespace Avalonia.Utilities
/// Unsubscribes from an event.
///
/// The type of the event arguments.
+ /// The type of the subscriber.
/// The event source.
/// The name of the event.
/// The subscriber.
diff --git a/src/Avalonia.Controls/Window.cs b/src/Avalonia.Controls/Window.cs
index f5af6774b5..c8e09b8f9c 100644
--- a/src/Avalonia.Controls/Window.cs
+++ b/src/Avalonia.Controls/Window.cs
@@ -291,7 +291,8 @@ namespace Avalonia.Controls
///
/// The dialog result.
///
- /// When the window is shown with the method, the
+ /// When the window is shown with the
+ /// or method, the
/// resulting task will produce the value when the window
/// is closed.
///
diff --git a/src/Avalonia.Styling/StyledElement.cs b/src/Avalonia.Styling/StyledElement.cs
index e52a1961ba..d314a8d44e 100644
--- a/src/Avalonia.Styling/StyledElement.cs
+++ b/src/Avalonia.Styling/StyledElement.cs
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
+using System.ComponentModel;
using System.Linq;
using System.Reactive.Linq;
using System.Reactive.Subjects;