From 8227de00992243722b3e85dbff21e5943552ef74 Mon Sep 17 00:00:00 2001 From: Brian Phillips Date: Tue, 31 Jul 2018 06:34:42 -0400 Subject: [PATCH] Update language.jade (#2616) --- website/api/language.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)