From 8ce0085edae7f94ca5891fb6fd31ba896e42da67 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Sat, 7 Nov 2015 23:10:04 +1100 Subject: [PATCH] Fix Bgra32.ToString() Former-commit-id: 7557d3cdd7fd95ec468e609e6bceda343f6a52b9 Former-commit-id: 6306f95c07dba6081883fb33588b7b21f5465632 Former-commit-id: 9bbc76da966c76bfea8bd23b8e04e30368c6898b --- src/ImageProcessor/Colors/Formats/Bgra32.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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} ]"; } ///