Skip to content

Commit 05b64ce

Browse files
committed
style(translate.go): add missing newline for better code readability between logical sections
1 parent 29cca52 commit 05b64ce

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

translate.go

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ func (t *Translator) Translate(ctx context.Context, params TranslateParams) (str
7070
}
7171

7272
docChunks := chunks.Chunks(params.Document, params.SplitChunks)
73+
7374
result := make([]string, 0, len(docChunks))
7475
for _, chunk := range docChunks {
7576
translated, err := t.translateChunk(ctx, chunk, params)

0 commit comments

Comments
 (0)