diff --git a/src/ImageProcessor/Colors/Formats/Bgra32.cs b/src/ImageProcessor/Colors/Formats/Bgra32.cs index 237888e61..651f5993b 100644 --- a/src/ImageProcessor/Colors/Formats/Bgra32.cs +++ b/src/ImageProcessor/Colors/Formats/Bgra32.cs @@ -15,7 +15,7 @@ namespace ImageProcessor public struct Bgra32 : IEquatable { /// - /// Represents a that has B, G, R, and A values set to zero. + /// Represents a 32 bit that has B, G, R, and A values set to zero. /// public static readonly Bgra32 Empty = default(Bgra32); @@ -172,10 +172,10 @@ namespace ImageProcessor { if (this.IsEmpty) { - return "Color [ Empty ]"; + return "Bgra32 [ Empty ]"; } - return $"Color [ B={this.B}, G={this.G}, R={this.R}, A={this.A} ]"; + return $"Bgra32 [ B={this.B}, G={this.G}, R={this.R}, A={this.A} ]"; } ///