From 3fa57168a520d8afe0c06d8a0200dd3517f43078 Mon Sep 17 00:00:00 2001 From: ishiis Date: Thu, 12 May 2022 21:33:53 +0900 Subject: [PATCH] remove `--` in `./breeze build-docs` command (#23671) --- docs/README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/README.rst b/docs/README.rst index 2beb98379abc9..00624dc607ffe 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -45,25 +45,25 @@ or just to run spell-check .. code-block:: bash - ./breeze build-docs -- --spellcheck-only + ./breeze build-docs --spellcheck-only or just to run documentation building .. code-block:: bash - ./breeze build-docs -- --docs-only + ./breeze build-docs --docs-only Also, you can only build one documentation via ``--package-filter``. .. code-block:: bash - ./breeze build-docs -- --package-filter + ./breeze build-docs --package-filter You can also see all the available arguments via ``--help``. .. code-block:: bash - ./breeze build-docs -- --help + ./breeze build-docs --help Running the Docs Locally ------------------------