We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 450279b commit 63aece9Copy full SHA for 63aece9
src/ImageSharp/Formats/Tiff/Compression/Decompressors/T6BitReader.cs
@@ -127,7 +127,7 @@ public bool ReadNextCodeWord()
127
this.Code = Len7Code0000000;
128
129
// We do not support Extensions1D codes, but some encoders (scanner from epson) write a premature EOL code,
130
- // 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.
131
// Read the next 5 bit, if its a EOL code return true, indicating its the end of the image.
132
if (this.ReadValue(5) == 1)
133
{
0 commit comments