Skip to content

Commit 25a768b

Browse files
committed
Fixed typo in comment
1 parent 79e21f9 commit 25a768b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MimeKit/AsyncMimeReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ async Task StepHeadersAsync (CancellationToken cancellationToken)
158158
left = await ReadAheadAsync (2, 0, cancellationToken).ConfigureAwait (false);
159159

160160
if (left == 0) {
161-
// Note: The only way to get here is if this is the first-pass throgh this loop and we're at EOF, so headerCount should ALWAYS be 0.
161+
// Note: The only way to get here is if this is the first-pass through this loop and we're at EOF, so headerCount should ALWAYS be 0.
162162

163163
if (toplevel && headerCount == 0) {
164164
// EOF has been reached before any headers have been parsed for Parse[Headers,Entity,Message]Async.

MimeKit/MimeReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1922,7 +1922,7 @@ unsafe void StepHeaders (byte* inbuf, CancellationToken cancellationToken)
19221922
left = ReadAhead (2, 0, cancellationToken);
19231923

19241924
if (left == 0) {
1925-
// Note: The only way to get here is if this is the first-pass throgh this loop and we're at EOF, so headerCount should ALWAYS be 0.
1925+
// Note: The only way to get here is if this is the first-pass through this loop and we're at EOF, so headerCount should ALWAYS be 0.
19261926

19271927
if (toplevel && headerCount == 0) {
19281928
// EOF has been reached before any headers have been parsed for Parse[Headers,Entity,Message].

0 commit comments

Comments
 (0)