From c0a09a15e678b2850a3ffebcf3921a94f3e768f5 Mon Sep 17 00:00:00 2001 From: Nick Nuon <76173566+Nick-Nuon@users.noreply.github.com> Date: Mon, 26 Aug 2024 11:33:28 -0400 Subject: [PATCH] trim comments --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e371072..32db844 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ fast Base64 encoding functions. string base64 = "SGVsbG8sIFdvcmxkIQ=="; byte[] buffer = new byte[SimdBase64.Base64.MaximalBinaryLengthFromBase64(base64.AsSpan())]; int bytesConsumed; // gives you the number of characters consumed - int bytesWritten; // gives you the + int bytesWritten; var result = SimdBase64.Base64.DecodeFromBase64(base64.AsSpan(), buffer, out bytesConsumed, out bytesWritten, false); // false is for regular base64, true for base64url // result == OperationStatus.Done // Encoding.UTF8.GetString(buffer.AsSpan().Slice(0, bytesWritten)) == "Hello, World!"