Fix misspelt keyword in StringStore example

This commit is contained in:
Freddy Heppell 2022-05-29 10:49:19 +01:00 committed by GitHub
parent 85dd2b6c04
commit 322c5a3ac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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