From 3dfc7f86be13863595def1492f2b87ce8e72bd81 Mon Sep 17 00:00:00 2001 From: Stefan Schweter Date: Tue, 10 Jul 2018 13:11:19 +0200 Subject: [PATCH] lemmatizer: correct lemma for Rang (#2537) ## Description This PR corrects the German lemma form for the word "Rang". Initially, the lemma form was "ringen", which is not correct, because it refers to the verb ("ringen") and not to the noun ("Rang"). ### Types of change The lemma form for "Rang" is corrected to "Rang", see also the [Duden](https://www.duden.de/rechtschreibung/Rang) entry. ## Checklist - [x] I have submitted the spaCy Contributor Agreement. - [x] I ran the tests, and all new and existing tests passed. - [x] My changes don't require a change to the documentation, or if they do, I've added all required information. --- spacy/lang/de/lemmatizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/lang/de/lemmatizer.py b/spacy/lang/de/lemmatizer.py index 2125d4e7c..7c38fd25c 100644 --- a/spacy/lang/de/lemmatizer.py +++ b/spacy/lang/de/lemmatizer.py @@ -52419,7 +52419,7 @@ LOOKUP = { "Rande": "Rand", "Randes": "Rand", "Rands": "Rand", - "Rang": "ringen", + "Rang": "Rang", "Range": "Rang", "Rangeklotzten": "Rangeklotzte", "Rangekriegten": "Rangekriegte",