diff options
author | Cashew <52880648+Scrub1492@users.noreply.github.com> | 2023-12-20 14:46:27 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 05:46:27 +0000 |
commit | fa2fbfa0242764a2b2af133b9b2ce54861967922 (patch) | |
tree | 1e202b8374e3ffc903bbc11931ab7694f29150e5 /ext/js/language/dictionary-importer.js | |
parent | 86f92ba00efdfa0feaa889c2188068dc6d8b457b (diff) |
fix typo (#405)
Diffstat (limited to 'ext/js/language/dictionary-importer.js')
-rw-r--r-- | ext/js/language/dictionary-importer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/language/dictionary-importer.js b/ext/js/language/dictionary-importer.js index df9c48f1..fa16ec7a 100644 --- a/ext/js/language/dictionary-importer.js +++ b/ext/js/language/dictionary-importer.js @@ -761,7 +761,7 @@ export class DictionaryImporter { */ _normalizeTermOrReading(text) { // Note: this function should not perform String.normalize on the text, - // as it will characters in an undesirable way. + // as it will normalize characters in an undesirable way. // Thus, this function is currently a no-op. // Example: // - '\u9038'.normalize('NFC') => '\u9038' (逸) |