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
1 changed files with 1 additions and 1 deletions

View File

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