aboutsummaryrefslogtreecommitdiff
path: root/api/sentence.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/sentence.ts')
-rw-r--r--api/sentence.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/sentence.ts b/api/sentence.ts
index 6d9fc6d..d0cc434 100644
--- a/api/sentence.ts
+++ b/api/sentence.ts
@@ -50,7 +50,7 @@ export default class Sentence extends APIBase {
furigana(format: JapaneseFormatter = "HTML"): string {
return this.words.reduce((out, word) => {
- return out + word.text.furigana(format);
+ return out + word.furigana(format);
}, "");
}
}