Fix comment

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
chiloute
2026-07-28 10:21:19 +02:00
committed by GitHub
parent b3d32fd8d0
commit 984e2f88c8
+1 -1
View File
@@ -29,7 +29,7 @@ for i = 1, #B64_ALPHABET do
B64_DEC[B64_ALPHABET:sub(i, i)] = i - 1
end
-- Decode an unpadded base64url string. Returns the decoded string, or nil if
-- Decode an unpadded base64url string. Returns the decoded string, or nil on invalid input.
local function b64url_decode(s)
if #s % 4 == 1 then
return nil