Skip to content

Commit f38e47e

Browse files
committed
fix oversight
1 parent 2683ba2 commit f38e47e

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/parser/composer.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
Phrase,
1212
Predicate,
1313
Preposition,
14-
Quotation,
1514
Sentence,
1615
SimpleWordUnit,
1716
WordUnit,
@@ -204,10 +203,6 @@ export function sentence(sentence: Sentence): string {
204203
}
205204
return `${text}${sentence.punctuation}`;
206205
}
207-
export function quotation(quotation: Quotation): string {
208-
const text = quotation.sentences.map(sentence).join(" ");
209-
return `${quotation.leftMark}${text}${quotation.rightMark}`;
210-
}
211206
export function multipleSentences(sentences: MultipleSentences): string {
212207
switch (sentences.type) {
213208
case "single word":

0 commit comments

Comments
 (0)