From 71b95202eb4b9acc24d6c90382a8518e1afc3c11 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sat, 24 Jan 2015 20:49:15 +1100 Subject: [PATCH] * Add docstring to StringStore --- spacy/strings.pyx | 1 + 1 file changed, 1 insertion(+) diff --git a/spacy/strings.pyx b/spacy/strings.pyx index e5792aa9a..e15f88837 100644 --- a/spacy/strings.pyx +++ b/spacy/strings.pyx @@ -49,6 +49,7 @@ cdef class SymbolMap: cdef class StringStore: + '''Map strings to and from integer IDs.''' def __init__(self): self.mem = Pool() self._map = PreshMap()