From 79c720c062605bd982d8ecae588f725bc1521a98 Mon Sep 17 00:00:00 2001 From: Steven Liu <59462357+stevhliu@users.noreply.github.com> Date: Tue, 1 Nov 2022 11:30:36 -0700 Subject: [PATCH] fix typo (#20006) --- 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 2227480d58..91e69e1f51 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("rottten_tomatoes") + >>> dataset = load_dataset("rotten_tomatoes") ``` 5. Create a function to tokenize the dataset, and apply it over the entire dataset with [`~datasets.Dataset.map`]: