Fix misspelt keyword in StringStore example

This commit is contained in:
Freddy Heppell 2022-05-29 10:49:19 +01:00 committed by Adriane Boyd
parent de6607fc9b
commit 985cf8eb64

View File

@ -161,7 +161,7 @@ Load state from a binary string.
> #### Example
>
> ```python
> fron spacy.strings import StringStore
> from spacy.strings import StringStore
> store_bytes = stringstore.to_bytes()
> new_store = StringStore().from_bytes(store_bytes)
> ```