From 2b58f86b89a1f1b4792ef2ec27f167de5100cdad Mon Sep 17 00:00:00 2001 From: Andreas Haas Date: Wed, 11 Oct 2017 20:11:44 +0200 Subject: [PATCH] Fix doctool command and references to classes.xml --- community/contributing/updating_the_class_reference.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/community/contributing/updating_the_class_reference.rst b/community/contributing/updating_the_class_reference.rst index 5c2fc8ed1..709484204 100644 --- a/community/contributing/updating_the_class_reference.rst +++ b/community/contributing/updating_the_class_reference.rst @@ -119,13 +119,13 @@ When classes are modified in the source code, the documentation template might b :: - ./bin/godot.x11.tools.64 -doctool doc/base/classes.xml + ./bin/godot.x11.tools.64 --doctool . -The doc/base/classes.xml should then be up-to-date with current Godot Engine features. You can then check what changed using the ``git diff`` command. If there are changes to other classes than the one you are planning to document, please commit those changes first before starting to edit the template: +The xml files in doc/classes should then be up-to-date with current Godot Engine features. You can then check what changed using the ``git diff`` command. If there are changes to other classes than the one you are planning to document, please commit those changes first before starting to edit the template: :: - git add doc/base/classes.xml + git add doc/classes/*.xml git commit -m "Sync classes reference template with current code base" You are now ready to edit this file to add stuff.