From 228b3c8bc9f0c8381bc8165dd00552211487b51d Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Mon, 10 Jan 2022 11:16:17 +1100 Subject: [PATCH] Update JpegDecoderCore.cs --- src/ImageSharp/Formats/Jpeg/JpegDecoderCore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Formats/Jpeg/JpegDecoderCore.cs b/src/ImageSharp/Formats/Jpeg/JpegDecoderCore.cs index 5f01c04688..2eb2e986ac 100644 --- a/src/ImageSharp/Formats/Jpeg/JpegDecoderCore.cs +++ b/src/ImageSharp/Formats/Jpeg/JpegDecoderCore.cs @@ -625,7 +625,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg private void ProcessApplicationHeaderMarker(BufferedReadStream stream, int remaining) { // We can only decode JFif identifiers. - // Some bad images contain multiple App0 markers (Issue 1932) so we check to see + // Some images contain multiple JFIF markers (Issue 1932) so we check to see // if it's already been read. if (remaining < JFifMarker.Length || (!this.jFif.Equals(default))) {