From 24bc17efe3434adf7913c40254e4b9e379cfdd75 Mon Sep 17 00:00:00 2001 From: Mark Wilson <23439518+wlsnmrk@users.noreply.github.com> Date: Mon, 20 Mar 2023 13:57:35 -0400 Subject: [PATCH] Provide correct directory for HTML documentation output Updated output directory in tutorial for manual sphinx-build operations on godot-docs. It now matches the output directory used by the make command for godot-docs. --- contributing/documentation/building_the_manual.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributing/documentation/building_the_manual.rst b/contributing/documentation/building_the_manual.rst index ddfbe349c..c2f15c6e1 100644 --- a/contributing/documentation/building_the_manual.rst +++ b/contributing/documentation/building_the_manual.rst @@ -103,10 +103,10 @@ program manually: .. code:: sh - sphinx-build -b html ./ _build + sphinx-build -b html ./ _build/html You can also specify a list of files to build, which can greatly speed up compilation: .. code:: sh - sphinx-build -b html ./ _build classes/class_node.rst classes/class_resource.rst + sphinx-build -b html ./ _build/html classes/class_node.rst classes/class_resource.rst