From a61a1d43cf9573a9a7b6d6199732b5cc921f1135 Mon Sep 17 00:00:00 2001 From: DomHudson <10864294+DomHudson@users.noreply.github.com> Date: Mon, 30 Sep 2024 16:45:50 +0100 Subject: [PATCH] [Documentation] Replace broken URL in _serialization.mdx (#13641) --- website/docs/usage/101/_serialization.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/usage/101/_serialization.mdx b/website/docs/usage/101/_serialization.mdx index ce34ea6e9..d58c068eb 100644 --- a/website/docs/usage/101/_serialization.mdx +++ b/website/docs/usage/101/_serialization.mdx @@ -4,7 +4,7 @@ progress** – for example, everything that's in your `nlp` object. This means you'll have to translate its contents and structure into a format that can be saved, like a file or a byte string. This process is called serialization. spaCy comes with **built-in serialization methods** and supports the -[Pickle protocol](https://www.diveinto.org/python3/serializing.html#dump). +[Pickle protocol](https://docs.python.org/3/library/pickle.html). > #### What's pickle? >