From 4aecccf153ec6507d4e9c5364e5159de3d1f6d28 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Fri, 7 Aug 2020 15:17:25 +0200 Subject: [PATCH] Update API docs for AttributeRuler.__init__ --- website/docs/api/attributeruler.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/api/attributeruler.md b/website/docs/api/attributeruler.md index 7c4655bc5..e2f009cad 100644 --- a/website/docs/api/attributeruler.md +++ b/website/docs/api/attributeruler.md @@ -65,8 +65,8 @@ pattern_dicts = \[ | `vocab` | `Vocab` | The shared nlp object to pass the vocab to the matchers and process phrase patterns. | | `name` | str | Instance name of the current pipeline component. Typically passed in automatically from the factory when the component is added. Used to disable the current entity ruler while creating phrase patterns with the nlp object. | | _keyword-only_ | | | -| `pattern_dicts` | `Iterable[Dict]]` | Optional patterns to load in on initialization. | -| `validate` | bool | Whether patterns should be validated, passed to Matcher and PhraseMatcher as `validate`. Defaults to `False`. | +| `pattern_dicts` | `Iterable[Dict]]` | Optional patterns to load in on initialization. Defaults to `None`. | +| `validate` | bool | Whether patterns should be validated (passed to the `Matcher`). Defaults to `False`. | ## AttributeRuler.\_\_call\_\_ {#call tag="method"}