Skip to content

Commit c0a09a1

Browse files
authored
trim comments
1 parent 28c1dd8 commit c0a09a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fast Base64 encoding functions.
3333
string base64 = "SGVsbG8sIFdvcmxkIQ==";
3434
byte[] buffer = new byte[SimdBase64.Base64.MaximalBinaryLengthFromBase64(base64.AsSpan())];
3535
int bytesConsumed; // gives you the number of characters consumed
36-
int bytesWritten; // gives you the
36+
int bytesWritten;
3737
var result = SimdBase64.Base64.DecodeFromBase64(base64.AsSpan(), buffer, out bytesConsumed, out bytesWritten, false); // false is for regular base64, true for base64url
3838
// result == OperationStatus.Done
3939
// Encoding.UTF8.GetString(buffer.AsSpan().Slice(0, bytesWritten)) == "Hello, World!"

0 commit comments

Comments
 (0)