* Fix lower attribute in lexeme.pxd

This commit is contained in:
Matthew Honnibal 2015-08-06 16:07:41 +02:00
parent 3ecacb9635
commit c263577424
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ cdef inline attr_t get_attr(const LexemeC* lex, attr_id_t feat_name) nogil:
elif feat_name == ORTH:
return lex.orth
elif feat_name == LOWER:
return lex.norm
return lex.lower
elif feat_name == NORM:
return lex.norm
elif feat_name == SHAPE: