From fb7cbe236b64c9a039222949d444b6632b1121c9 Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Wed, 2 Nov 2022 19:37:25 +0100 Subject: [PATCH] Fix doctest (#20023) * Fix doctest Co-authored-by: ydshieh --- docs/source/en/quicktour.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/quicktour.mdx b/docs/source/en/quicktour.mdx index 91e69e1f51..7cfac04314 100644 --- a/docs/source/en/quicktour.mdx +++ b/docs/source/en/quicktour.mdx @@ -437,7 +437,7 @@ Depending on your task, you'll typically pass the following parameters to [`Trai ```py >>> from datasets import load_dataset - >>> dataset = load_dataset("rotten_tomatoes") + >>> dataset = load_dataset("rotten_tomatoes") # doctest: +IGNORE_RESULT ``` 5. Create a function to tokenize the dataset, and apply it over the entire dataset with [`~datasets.Dataset.map`]: