Commit 337d8dc28f41f18fe8c820f6746be803d29538d3

Authored by Vinícius Matheus
1 parent ffab5c27
Exists in master

Fix plural 'ses'

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/AplicaRegras.py
... ... @@ -440,8 +440,8 @@ class AplicaRegras(object):
440 440 elif(token[-3:] == "ses"):
441 441 #TODO: Algumas palavras possuem marcações gráficas na raiz singular. Ex: Gás – Gases
442 442 if token[-4] not in vogais:
443   - return token[:-1]
444   - return token[:-2]
  443 + return token[:-2]
  444 + return token[:-1]
445 445 elif(token[-2:] == "ns"):
446 446 return token[0:-2]+"m"
447 447 elif(token[-3:] == "eis"):
... ...