From c2f0256606a72b62421e7eb12bf1907b9ed7d689 Mon Sep 17 00:00:00 2001 From: Basile Dura Date: Fri, 2 Jun 2023 09:43:48 +0200 Subject: [PATCH] fix: morphology.pxd --- spacy/morphology.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/morphology.pxd b/spacy/morphology.pxd index 8d449d065..5b84cb1c8 100644 --- a/spacy/morphology.pxd +++ b/spacy/morphology.pxd @@ -11,7 +11,7 @@ from .typedefs cimport attr_t, hash_t cdef class Morphology: cdef readonly Pool mem cdef readonly StringStore strings - cdef PreshMap tags # Keyed by hash, value is pointer to tag + cdef PreshMap tags # Keyed by hash, value is pointer to tag cdef MorphAnalysisC create_morph_tag(self, field_feature_pairs) except * cdef int insert(self, MorphAnalysisC tag) except -1