Improve example

This commit is contained in:
richardpaulhudson 2023-01-26 20:46:35 +01:00
parent 4fbc408b76
commit 6aaf575488

View File

@ -535,8 +535,8 @@ is displayed.
> doc = nlp("All we have to decide is what to do with the time that is given us. Nobody knows how much time that is.")
> doc.inspect()
> doc.inspect("lemma_", "give")
> doc.inspect("lemma_", "time", start_i=18)
> doc.inspect("lemma_", "time", length=20)
> doc.inspect("text", "time", start_i=18)
> doc.inspect("text", "time", length=20)
> ```
| Name | Description |