From 089f44cc564b30ff7cfe0ff8c68adacaa75c477f Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 29 Sep 2019 17:11:13 +0200 Subject: [PATCH] Update serialization docs [ci skip] --- website/docs/usage/101/_serialization.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/usage/101/_serialization.md b/website/docs/usage/101/_serialization.md index 828b796b3..01a9c39d1 100644 --- a/website/docs/usage/101/_serialization.md +++ b/website/docs/usage/101/_serialization.md @@ -13,9 +13,9 @@ file or a byte string. This process is called serialization. spaCy comes with > object to and from disk, but it's also used for distributed computing, e.g. > with > [PySpark](https://spark.apache.org/docs/0.9.0/python-programming-guide.html) -> or [Dask](http://dask.pydata.org/en/latest/). When you unpickle an object, -> you're agreeing to execute whatever code it contains. It's like calling -> `eval()` on a string – so don't unpickle objects from untrusted sources. +> or [Dask](https://dask.org). When you unpickle an object, you're agreeing to +> execute whatever code it contains. It's like calling `eval()` on a string – so +> don't unpickle objects from untrusted sources. All container classes, i.e. [`Language`](/api/language) (`nlp`), [`Doc`](/api/doc), [`Vocab`](/api/vocab) and [`StringStore`](/api/stringstore)