diff --git a/source/gfoidl.Base64/Internal/Base64Impl.DecodeWhitespace.cs b/source/gfoidl.Base64/Internal/Base64Impl.DecodeWhitespace.cs index fb8c4c8..8a99531 100644 --- a/source/gfoidl.Base64/Internal/Base64Impl.DecodeWhitespace.cs +++ b/source/gfoidl.Base64/Internal/Base64Impl.DecodeWhitespace.cs @@ -65,7 +65,7 @@ private static OperationStatus DecodeWithWithespace( // First char isn't whitespace, but we didn't consume anything, thus // the input may have whitespace anywhere in between. So fall back to // block-wise decoding. - return DecodeWithWithespaceBlockwise(encoded, dataBuffer, out consumed, out written, isFinalBlock); + return DecodeWithWhitespaceBlockwise(encoded, dataBuffer, out consumed, out written, isFinalBlock); } encoded = encoded.Slice(localConsumed); @@ -92,7 +92,7 @@ static bool TrySkipWhitespace(ReadOnlySpan encoded, out int consumed) } } //------------------------------------------------------------------------- - private static OperationStatus DecodeWithWithespaceBlockwise( + private static OperationStatus DecodeWithWhitespaceBlockwise( ReadOnlySpan encoded, Span dataBuffer, out int consumed,