diff --git a/src/Uno.UI/UI/Xaml/SolidColorBrushHelper.cs b/src/Uno.UI/UI/Xaml/SolidColorBrushHelper.cs index c12831af7e06..b2f2af86f72b 100644 --- a/src/Uno.UI/UI/Xaml/SolidColorBrushHelper.cs +++ b/src/Uno.UI/UI/Xaml/SolidColorBrushHelper.cs @@ -24,7 +24,7 @@ namespace Windows.UI.Xaml { - public static class SolidColorBrushHelper + internal static class SolidColorBrushHelper { #if XAMARIN_IOS public static SolidColorBrush FromARGB(byte a, byte r, byte g, byte b) @@ -44,8 +44,8 @@ public static SolidColorBrush FromARGB(byte a, byte r, byte g, byte b) #endif /// - /// Takes a color code as an ARGB or RGB string and returns a solid color brush. - /// + /// Takes a color code as an ARGB or RGB string and returns a solid color brush. + /// /// Remark: if single digits are used to define the color, they will /// be duplicated (example: FFD8 will become FFFFDD88) /// @@ -55,8 +55,8 @@ public static SolidColorBrush FromARGB(string colorCode) } /// - /// Takes a color code as an ARGB or RGB, or textual string from string and returns a solid color brush. - /// + /// Takes a color code as an ARGB or RGB, or textual string from string and returns a solid color brush. + /// /// Remark: if single digits are used to define the color, they will /// be duplicated (example: FFD8 will become FFFFDD88) ///