From 322c5a3ac4da412582e684e8ec2355b68efe7b27 Mon Sep 17 00:00:00 2001 From: Freddy Heppell Date: Sun, 29 May 2022 10:49:19 +0100 Subject: [PATCH] Fix misspelt keyword in StringStore example --- website/docs/api/stringstore.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/api/stringstore.md b/website/docs/api/stringstore.md index d5f78dbab..cd414b1f0 100644 --- a/website/docs/api/stringstore.md +++ b/website/docs/api/stringstore.md @@ -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) > ```