diff --git a/spacy/spans.pyx b/spacy/spans.pyx index e750abbad..9481423d2 100644 --- a/spacy/spans.pyx +++ b/spacy/spans.pyx @@ -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):