From 11fbc32e3e781f63198e001263f3b4195e435bc5 Mon Sep 17 00:00:00 2001 From: Serhiy-Shekhovtsov Date: Tue, 31 Aug 2021 10:01:12 +0000 Subject: [PATCH] Fixing a typo in the data_collator documentation (#13309) --- docs/source/main_classes/data_collator.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/main_classes/data_collator.rst b/docs/source/main_classes/data_collator.rst index 1ab8b6eb2b..5e406f312d 100644 --- a/docs/source/main_classes/data_collator.rst +++ b/docs/source/main_classes/data_collator.rst @@ -18,7 +18,7 @@ the same type as the elements of :obj:`train_dataset` or :obj:`eval_dataset`. To be able to build batches, data collators may apply some processing (like padding). Some of them (like :class:`~transformers.DataCollatorForLanguageModeling`) also apply some random data augmentation (like random masking) -oin the formed batch. +on the formed batch. Examples of use can be found in the :doc:`example scripts <../examples>` or :doc:`example notebooks <../notebooks>`.