From e37bc579fce3f193fe1f097262db65dce7a684d4 Mon Sep 17 00:00:00 2001 From: Sylvain Gugger Date: Wed, 22 Dec 2021 08:19:36 -0500 Subject: [PATCH] Fix typo in error message --- utils/check_repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/check_repo.py b/utils/check_repo.py index 0a40a0376e..86cf587864 100644 --- a/utils/check_repo.py +++ b/utils/check_repo.py @@ -635,7 +635,7 @@ def check_docstrings_are_in_md(): raise ValueError( "The following files have docstrings written in rst:\n" + "\n".join([f"- {f}" for f in files_with_rst]) - + "To fix this run `doc_builder convert path_to_py_file` after installing `doc_builder`\n" + + "To fix this run `doc-builder convert path_to_py_file` after installing `doc-builder`\n" "(`pip install git+https://github.com/huggingface/doc-builder`)" )