From 63aece9018cbf6fcaf5b794998da4d87f4dcaa6a Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Sun, 25 Jun 2023 14:47:26 +1000 Subject: [PATCH] Update src/ImageSharp/Formats/Tiff/Compression/Decompressors/T6BitReader.cs --- .../Formats/Tiff/Compression/Decompressors/T6BitReader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Formats/Tiff/Compression/Decompressors/T6BitReader.cs b/src/ImageSharp/Formats/Tiff/Compression/Decompressors/T6BitReader.cs index fe71b204b..ea0309487 100644 --- a/src/ImageSharp/Formats/Tiff/Compression/Decompressors/T6BitReader.cs +++ b/src/ImageSharp/Formats/Tiff/Compression/Decompressors/T6BitReader.cs @@ -127,7 +127,7 @@ internal sealed class T6BitReader : T4BitReader this.Code = Len7Code0000000; // We do not support Extensions1D codes, but some encoders (scanner from epson) write a premature EOL code, - // which at this point cannot be distinguished from a distinguish, because we read the data bit by bit. + // which at this point cannot be distinguished from the marker, because we read the data bit by bit. // Read the next 5 bit, if its a EOL code return true, indicating its the end of the image. if (this.ReadValue(5) == 1) {