Merge branch 'master' into spacy.io

This commit is contained in:
Ines Montani 2019-11-14 14:04:22 +01:00
commit 2fdae80edf

View File

@ -60,7 +60,7 @@ the component has been added to the pipeline using
> sentencizer = nlp.create_pipe("sentencizer")
> nlp.add_pipe(sentencizer)
> doc = nlp("This is a sentence. This is another sentence.")
> assert list(doc.sents) == 2
> assert len(list(doc.sents)) == 2
> ```
| Name | Type | Description |