Skip to content

Commit f1c2018

Browse files
committed
refactor
1 parent 4e76d9a commit f1c2018

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dics/hanyu7/hanyu7.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ export async function processHanyu7(
173173
const youSplit = reading.split("又");
174174
if (youSplit.length > 1) {
175175
reading = youSplit[0]!;
176-
const anotherReading = youSplit[1]!;
177-
entryContents.splice(1, 0, `(又 ${anotherReading})`);
176+
entryContents.splice(1, 0, `(又 ${youSplit[1]!})`);
178177
}
179178
const definitionContentsForReading = {
180179
tag: "span",

0 commit comments

Comments
 (0)