diff --git a/website/api/language.jade b/website/api/language.jade index 46a75c68b..a5069d032 100644 --- a/website/api/language.jade +++ b/website/api/language.jade @@ -578,7 +578,7 @@ p Serialize the current state to a binary string. p Load state from a binary string. +aside-code("Example"). - fron spacy.lang.en import English + from spacy.lang.en import English nlp_bytes = nlp.to_bytes() nlp2 = English() nlp2.from_bytes(nlp_bytes)