spanish 0.0.5 → 0.0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/spanish/phonology.rb +1 -1
- data/lib/spanish/version.rb +1 -1
- metadata +2 -1
data/lib/spanish/phonology.rb
CHANGED
|
@@ -30,7 +30,7 @@ module Spanish
|
|
|
30
30
|
voice if alveolar? and fricative? and precedes(:voiced, :non_vocoid)
|
|
31
31
|
},
|
|
32
32
|
:aspiration => ::Phonology::Rule.new {
|
|
33
|
-
if syllable_final? and alveolar? and fricative? and follows(:vocoid) and
|
|
33
|
+
if syllable_final? and alveolar? and fricative? and follows(:vocoid) and next_sound
|
|
34
34
|
devoice
|
|
35
35
|
add :glottal
|
|
36
36
|
add! :approximant
|
data/lib/spanish/version.rb
CHANGED