From 06f341de4fa17f5b928c9b7143026248e8080ae4 Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Tue, 20 Sep 2022 15:43:32 -0400 Subject: [PATCH] Add a missing space in a script arg documentation (#19113) --- examples/pytorch/language-modeling/run_mlm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pytorch/language-modeling/run_mlm.py b/examples/pytorch/language-modeling/run_mlm.py index a1b1b91057..576fc3528f 100755 --- a/examples/pytorch/language-modeling/run_mlm.py +++ b/examples/pytorch/language-modeling/run_mlm.py @@ -72,7 +72,7 @@ class ModelArguments: default=None, metadata={ "help": ( - "The model checkpoint for weights initialization.Don't set if you want to train a model from scratch." + "The model checkpoint for weights initialization. Don't set if you want to train a model from scratch." ) }, )