aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/base32
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-01-12 12:13:29 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-01-12 12:13:29 +0100
commit600e0ebed0c8d1b27de266edcee5cc392cfc306a (patch)
tree6beb3a4bb7801e1ca656fff1f3c3ef21a3ba90ed /core/encoding/base32
parentcd93e2f6f8bb971e1d33bfc783ce4ab4e7568a5b (diff)
Fix stray space vs. tab
Diffstat (limited to 'core/encoding/base32')
-rw-r--r--core/encoding/base32/base32.odin8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/encoding/base32/base32.odin b/core/encoding/base32/base32.odin
index 8629491b1..2267a872b 100644
--- a/core/encoding/base32/base32.odin
+++ b/core/encoding/base32/base32.odin
@@ -118,10 +118,10 @@ _encode :: proc(out, data: []byte, ENC_TBL := ENC_TABLE, allocator := context.al
@(optimization_mode="favor_size")
decode :: proc(
- data: string,
- DEC_TBL := DEC_TABLE,
- validate: Validate_Proc = _validate_default,
- allocator := context.allocator) -> (out: []byte, err: Error) {
+ data: string,
+ DEC_TBL := DEC_TABLE,
+ validate: Validate_Proc = _validate_default,
+ allocator := context.allocator) -> (out: []byte, err: Error) {
if len(data) == 0 {
return nil, .None
}