diff --git a/src/Avalonia.Controls.ColorPicker/Converters/AccentColorConverter.cs b/src/Avalonia.Controls.ColorPicker/Converters/AccentColorConverter.cs
index 4d05222e31..2c8e09adc9 100644
--- a/src/Avalonia.Controls.ColorPicker/Converters/AccentColorConverter.cs
+++ b/src/Avalonia.Controls.ColorPicker/Converters/AccentColorConverter.cs
@@ -7,8 +7,10 @@ namespace Avalonia.Controls.Primitives.Converters
{
///
/// Creates an accent color for a given base color value and step parameter.
- /// This is a highly-specialized converter for the color picker.
///
+ ///
+ /// This is a highly-specialized converter for the color picker.
+ ///
public class AccentColorConverter : IValueConverter
{
///
diff --git a/src/Avalonia.Controls.ColorPicker/Converters/ContrastBrushConverter.cs b/src/Avalonia.Controls.ColorPicker/Converters/ContrastBrushConverter.cs
index 574f23dfae..8b66b1a4e5 100644
--- a/src/Avalonia.Controls.ColorPicker/Converters/ContrastBrushConverter.cs
+++ b/src/Avalonia.Controls.ColorPicker/Converters/ContrastBrushConverter.cs
@@ -10,6 +10,9 @@ namespace Avalonia.Controls.Primitives.Converters
/// Gets a , either black or white, depending on the luminance of the supplied color.
/// A default color supplied in the converter parameter may be returned if alpha is below the set threshold.
///
+ ///
+ /// This is a highly-specialized converter for the color picker.
+ ///
public class ContrastBrushConverter : IValueConverter
{
private ToColorConverter toColorConverter = new ToColorConverter();
diff --git a/src/Avalonia.Controls.ColorPicker/Converters/ThirdComponentConverter.cs b/src/Avalonia.Controls.ColorPicker/Converters/ThirdComponentConverter.cs
index 220a993f99..11e33c74f0 100644
--- a/src/Avalonia.Controls.ColorPicker/Converters/ThirdComponentConverter.cs
+++ b/src/Avalonia.Controls.ColorPicker/Converters/ThirdComponentConverter.cs
@@ -7,8 +7,10 @@ namespace Avalonia.Controls.Primitives.Converters
///
/// Gets the third corresponding with a given
/// that represents the other two components.
- /// This is a highly-specialized converter for the color picker.
///
+ ///
+ /// This is a highly-specialized converter for the color picker.
+ ///
public class ThirdComponentConverter : IValueConverter
{
///