diff options
Diffstat (limited to 'doc/tools/make_rst.py')
-rwxr-xr-x | doc/tools/make_rst.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tools/make_rst.py b/doc/tools/make_rst.py index 761a7f8f4a..894727e141 100755 --- a/doc/tools/make_rst.py +++ b/doc/tools/make_rst.py @@ -928,11 +928,11 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir: git_branch = get_git_branch() source_xml_path = os.path.relpath(class_def.filepath, root_directory).replace("\\", "/") - source_github_url = f"https://github.com/godotengine/godot/tree/{git_branch}/{source_xml_path}" - generator_github_url = f"https://github.com/godotengine/godot/tree/{git_branch}/doc/tools/make_rst.py" + source_github_url = f"https://github.com/Redot-Engine/redot-engine/tree/{git_branch}/{source_xml_path}" + generator_github_url = f"https://github.com/Redot-Engine/redot-engine/tree/{git_branch}/doc/tools/make_rst.py" f.write(".. DO NOT EDIT THIS FILE!!!\n") - f.write(".. Generated automatically from Godot engine sources.\n") + f.write(".. Generated automatically from Redot engine sources.\n") f.write(f".. Generator: {generator_github_url}.\n") f.write(f".. XML source: {source_github_url}.\n\n") @@ -1754,7 +1754,7 @@ def make_rst_index(grouped_classes: Dict[str, List[str]], dry_run: bool, output_ generator_github_url = f"https://github.com/godotengine/godot/tree/{git_branch}/doc/tools/make_rst.py" f.write(".. DO NOT EDIT THIS FILE!!!\n") - f.write(".. Generated automatically from Godot engine sources.\n") + f.write(".. Generated automatically from Redot engine sources.\n") f.write(f".. Generator: {generator_github_url}.\n\n") f.write(".. _doc_class_reference:\n\n") |