Fix typos in docs (closes #3802) [ci skip]

This commit is contained in:
Ines Montani 2019-06-01 11:35:01 +02:00
parent 1f13005751
commit 0c74506c9c

View File

@ -405,7 +405,7 @@ class BadHTMLMerger(object):
for match_id, start, end in matches:
spans.append(doc[start:end])
with doc.retokenize() as retokenizer:
for span in hashtags:
for span in spans:
retokenizer.merge(span)
for token in span:
token._.bad_html = True # Mark token as bad HTML
@ -679,7 +679,7 @@ for match_id, start, end in matches:
if doc.vocab.strings[match_id] == "HASHTAG":
hashtags.append(doc[start:end])
with doc.retokenize() as retokenizer:
for span in spans:
for span in hashtags:
retokenizer.merge(span)
for token in span:
token._.is_hashtag = True