Browse Source

Fix stray space vs. tab

Jeroen van Rijn 8 months ago
parent
commit
600e0ebed0
1 changed files with 4 additions and 4 deletions
  1. 4 4
      core/encoding/base32/base32.odin

+ 4 - 4
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
 	}