Skip to content

Commit

Permalink
changed files
Browse files Browse the repository at this point in the history
  • Loading branch information
Chhinna committed Sep 20, 2024
1 parent f1e3b51 commit b6d761f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/searchHistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ function getTargetContent(content, startDay, endDay) {
//${WORD_MEAN_SPLIT}v. 命名
// πŸ‘†πŸ‘†πŸ‘†
function genWordMean(word, means) {
return `${word}\n${WORD_MEAN_SPLIT}${means.join(`\n${WORD_MEAN_SPLIT}`)}\n`;
const meansWithSplit = means.join(`\n${WORD_MEAN_SPLIT}`);
return `${word}\n${WORD_MEAN_SPLIT}${meansWithSplit}\n`;
}

function getDaySplit(someDay) {
Expand Down

0 comments on commit b6d761f

Please sign in to comment.