From 05dcab10aab3e6993433553cf97e37d7503fd8b6 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 9 Aug 2020 22:34:03 +0200 Subject: [PATCH] Fix typo --- website/docs/usage/rule-based-matching.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/usage/rule-based-matching.md b/website/docs/usage/rule-based-matching.md index 2e07eff48..d7c3d49f8 100644 --- a/website/docs/usage/rule-based-matching.md +++ b/website/docs/usage/rule-based-matching.md @@ -979,8 +979,8 @@ added via [`nlp.add_pipe`](/api/language#add_pipe). When the `nlp` object is called on a text, it will find matches in the `doc` and add them as entities to the `doc.ents`, using the specified pattern label as the entity label. If any matches were to overlap, the pattern matching most tokens takes priority. If -they also happen to be equally long, then the match occuring first in the Doc is -chosen. +they also happen to be equally long, then the match occurring first in the `Doc` +is chosen. ```python ### {executable="true"}