docs: address Korean translation review feedback

This commit is contained in:
Affaan Mustafa
2026-03-13 00:17:54 -07:00
parent 526a9070e6
commit fb7b73a962
36 changed files with 383 additions and 132 deletions

View File

@@ -533,7 +533,8 @@ func ProcessRequest(data []byte) []byte {
buf.Write(data)
// Process...
return buf.Bytes()
out := append([]byte(nil), buf.Bytes()...)
return out
}
```