Fix misspelt keyword in StringStore example

This commit is contained in:
Freddy Heppell 2022-05-29 10:49:19 +01:00 committed by Paul O'Leary McCann
parent 83dd42163a
commit 9dffd93a0e

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)
> ```