Merge pull request #6976 from tarskiandhutch/patch-2 [ci skip]

Syntax error in Lemmatizer docs
This commit is contained in:
Ines Montani 2021-02-09 14:33:55 +11:00 committed by GitHub
commit 050f089a2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,7 @@ data format used by the lookup and rule-based lemmatizers, see
> lemmatizer = nlp.add_pipe("lemmatizer")
>
> # Construction via add_pipe with custom settings
> config = {"mode": "rule", overwrite=True}
> config = {"mode": "rule", "overwrite": True}
> lemmatizer = nlp.add_pipe("lemmatizer", config=config)
> ```