From 583bb6bd6d2a016f0f525f23ba830f1ee2d191cf Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Tue, 9 Mar 2021 12:14:09 +0100 Subject: [PATCH] Also fix "" --- src/ImageSharp/Image.FromBytes.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Image.FromBytes.cs b/src/ImageSharp/Image.FromBytes.cs index b8b4f056d..a33a345a0 100644 --- a/src/ImageSharp/Image.FromBytes.cs +++ b/src/ImageSharp/Image.FromBytes.cs @@ -91,7 +91,7 @@ namespace SixLabors.ImageSharp /// The byte array containing image data. /// The configuration is null. /// The data is null. - /// A new . + /// A new . public static Image Load(byte[] data) => Load(Configuration.Default, data);