Browse Source

dictionary: fix typo

preceeding -> preceding
master
Ikko Eltociear Ashimine 1 year ago
parent
commit
d568f23948
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libespeak-ng/dictionary.c

+ 1
- 1
src/libespeak-ng/dictionary.c View File

// stress marker, use this for the following vowel // stress marker, use this for the following vowel


if (phcode == phonSTRESS_PREV) { if (phcode == phonSTRESS_PREV) {
// primary stress on preceeding vowel
// primary stress on preceding vowel
j = count - 1; j = count - 1;
while ((j > 0) && (*stressed_syllable == 0) && (vowel_stress[j] < STRESS_IS_PRIMARY)) { while ((j > 0) && (*stressed_syllable == 0) && (vowel_stress[j] < STRESS_IS_PRIMARY)) {
if ((vowel_stress[j] != STRESS_IS_DIMINISHED) && (vowel_stress[j] != STRESS_IS_UNSTRESSED)) { if ((vowel_stress[j] != STRESS_IS_DIMINISHED) && (vowel_stress[j] != STRESS_IS_UNSTRESSED)) {

Loading…
Cancel
Save