Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
wtetsu committed Dec 28, 2024
1 parent 635eb8a commit 1a3a397
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/core/entry/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import rule from "../rule";

const createLookupWordsEn = (rawSourceStr, withCapitalized = false, mustIncludeOriginalText = false) => {
// U+200C: zero width non-joiner
const replacedSourceStr = rawSourceStr.replaceAll("\u200c", "").replaceALl("/", " / ");
const replacedSourceStr = rawSourceStr.replaceAll("\u200c", "").replaceAll("/", " / ");
const sourceStr = text.dealWithHyphens(replacedSourceStr, rule.doLetters);

const { firstWords, linkedWords } = processSourceString(sourceStr);
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es2024",
"target": "es2023",
"jsx": "react-jsx",
"moduleResolution": "node",
"strict": true,
Expand Down

0 comments on commit 1a3a397

Please sign in to comment.