Merge pull request #10867 from freddyheppell/patch-1

Fix misspelt keyword in StringStore docs example
This commit is contained in:
Paul O'Leary McCann 2022-05-30 14:22:19 +09:00 committed by GitHub
commit 87adb32576
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)
> ```