From d14494c780674d67ef7d951e52ff387293568c6e Mon Sep 17 00:00:00 2001 From: Brian Popow <38701097+brianpopow@users.noreply.github.com> Date: Thu, 12 Oct 2023 20:10:44 +0200 Subject: [PATCH] Update src/ImageSharp/Formats/Webp/BackgroundColorHandling.cs Co-authored-by: James Jackson-South --- src/ImageSharp/Formats/Webp/BackgroundColorHandling.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Formats/Webp/BackgroundColorHandling.cs b/src/ImageSharp/Formats/Webp/BackgroundColorHandling.cs index c843311c7f..5be8f6a296 100644 --- a/src/ImageSharp/Formats/Webp/BackgroundColorHandling.cs +++ b/src/ImageSharp/Formats/Webp/BackgroundColorHandling.cs @@ -15,7 +15,7 @@ public enum BackgroundColorHandling Standard = 0, /// - /// The background color of the ANIM chunk is ignored and instead the canvas is initialized with black, BGRA(0, 0, 0, 0). + /// The background color of the ANIM chunk is ignored and instead the canvas is initialized with transparent, BGRA(0, 0, 0, 0). /// Ignore = 1 }