Fix argument type in PhraseMatcher.add docs (closes #4496) [ci skip]

This commit is contained in:
Ines Montani 2019-10-22 14:37:30 +02:00
parent 3ee15fce0d
commit 4659435573
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ overwritten.
| ---------- | ------------------ | --------------------------------------------------------------------------------------------- |
| `match_id` | unicode | An ID for the thing you're matching. |
| `on_match` | callable or `None` | Callback function to act on matches. Takes the arguments `matcher`, `doc`, `i` and `matches`. |
| `*docs` | list | `Doc` objects of the phrases to match. |
| `*docs` | `Doc` | `Doc` objects of the phrases to match. |
## PhraseMatcher.remove {#remove tag="method" new="2.2"}