* Fix Spans.orth_

This commit is contained in:
Matthew Honnibal 2015-04-07 04:53:40 +02:00
parent 3b5ea3731a
commit 66c7ccf6cc

View File

@ -129,7 +129,7 @@ cdef class Span:
property orth_:
def __get__(self):
return ' '.join([t.string for t in self]).strip()
return ''.join([t.string for t in self]).strip()
property lemma_:
def __get__(self):