From 4243c70cfe6a7911bdfd2e598281d00adddd94d7 Mon Sep 17 00:00:00 2001 From: Eric Fried Date: Wed, 27 Jun 2018 17:20:53 -0500 Subject: [PATCH] Fix doc output path in PTI reference The PTI reference implies that the docs build job will output rendered documents to doc/build when it is in fact doc/build/html. Fix up the doc accordingly to avoid confusing the next guy as I myself was confused. Change-Id: I7c3e189cb29164c4934e809e5a64e938307fb320 --- reference/project-testing-interface.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/project-testing-interface.rst b/reference/project-testing-interface.rst index fc6e28627..057608f48 100644 --- a/reference/project-testing-interface.rst +++ b/reference/project-testing-interface.rst @@ -59,11 +59,11 @@ To support documentation generation, projects should: Assuming requirements have been properly installed as indicated by ``doc/requirements.txt`` and ``bindep.txt``, the following command should work with no additional setup and should result in the documentation being -emitted into ``doc/build``. +emitted into ``doc/build/html``. .. code-block:: bash - sphinx-build -b html doc/source doc/build + sphinx-build -b html doc/source doc/build/html Language specific instructions supplement these and are in addition to them.