Skip to content

Commit 3f9a08b

Browse files
committed
format
1 parent 7836689 commit 3f9a08b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/translator/composer.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,7 @@ function sentence(sentence: English.Sentence): string {
135135
const capitalized = capitalize(sentence.clauses.map(clause).join(", "));
136136
return `${capitalized}${sentence.punctuation}`;
137137
}
138-
export function multipleSentences(
139-
sentences: English.Sentences,
140-
): string {
138+
export function multipleSentences(sentences: English.Sentences): string {
141139
switch (sentences.type) {
142140
case "free form":
143141
return capitalize(sentences.text);

0 commit comments

Comments
 (0)