Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanVukovic99 committed Dec 24, 2023
1 parent 15b2a34 commit f6922c6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion ext/js/display/display-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ export class DisplayGenerator {
for (const termPronunciation of termPronunciations) {
if (termPronunciation.headwordIndex !== headwordIndex) { continue; }
for (const pronunciation of termPronunciation.pronunciations) {
if (pronunciation.type !== 'pitch-accent'){ continue; }
if (pronunciation.type !== 'pitch-accent') { continue; }
const category = this._japaneseUtil.getPitchCategory(reading, pronunciation.position, isVerbOrAdjective);
if (category !== null) {
categories.add(category);
Expand Down
1 change: 0 additions & 1 deletion types/ext/dictionary-database.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ export type TermMetaPhonetic = {
dictionary: string;
};


export type DatabaseKanjiMeta = DatabaseKanjiMetaFrequency;

export type DatabaseKanjiMetaFrequency = {
Expand Down

0 comments on commit f6922c6

Please sign in to comment.