diff --git a/src/Avalonia.Controls.ColorPicker/ColorView/ColorView.Properties.cs b/src/Avalonia.Controls.ColorPicker/ColorView/ColorView.Properties.cs
index 532e87a9fc..701dab97f7 100644
--- a/src/Avalonia.Controls.ColorPicker/ColorView/ColorView.Properties.cs
+++ b/src/Avalonia.Controls.ColorPicker/ColorView/ColorView.Properties.cs
@@ -504,6 +504,12 @@ namespace Avalonia.Controls
///
/// Gets or sets the index of the selected tab/panel/page (subview).
///
+ ///
+ /// When using the default control theme, this property is designed to be used with the
+ /// enum. The enum defines the
+ /// index values of each of the three standard tabs.
+ /// Use like `SelectedIndex = (int)ColorViewTab.Palette`.
+ ///
public int SelectedIndex
{
get => GetValue(SelectedIndexProperty);
diff --git a/src/Avalonia.Controls.ColorPicker/Helpers/Hsv.cs b/src/Avalonia.Controls.ColorPicker/Helpers/Hsv.cs
index 8a425b9581..76f33b3d83 100644
--- a/src/Avalonia.Controls.ColorPicker/Helpers/Hsv.cs
+++ b/src/Avalonia.Controls.ColorPicker/Helpers/Hsv.cs
@@ -11,7 +11,7 @@ namespace Avalonia.Controls.Primitives
/// Contains and allows modification of Hue, Saturation and Value components.
///
///
- /// The is a specialized struct optimized for permanence and memory:
+ /// The is a specialized struct optimized for performance and memory:
///
/// - This is not a read-only struct like and allows editing the fields
/// - Removes the alpha component unnecessary in core calculations
diff --git a/src/Avalonia.Controls.ColorPicker/Helpers/Rgb.cs b/src/Avalonia.Controls.ColorPicker/Helpers/Rgb.cs
index 72e3821c2b..ee81a22ecf 100644
--- a/src/Avalonia.Controls.ColorPicker/Helpers/Rgb.cs
+++ b/src/Avalonia.Controls.ColorPicker/Helpers/Rgb.cs
@@ -12,7 +12,7 @@ namespace Avalonia.Controls.Primitives
/// Contains and allows modification of Red, Green and Blue components.
///
///
- /// The is a specialized struct optimized for permanence and memory:
+ /// The is a specialized struct optimized for performance and memory:
///
/// - This is not a read-only struct like and allows editing the fields
/// - Removes the alpha component unnecessary in core calculations