diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-11-15 21:54:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-15 21:54:21 +0100 |
commit | c7f7dd3e3e3592264a05e0dc7ee5f1ea37fad738 (patch) | |
tree | a22a88d22bd079a8404150fbf5b870df6046240e /editor/doc/doc_data.cpp | |
parent | 4d08e7c4204ff3fa0e17e0de7e5a08ef03968202 (diff) | |
parent | 11e07d18bd80c0b7d8836698d98e058750e33660 (diff) |
Merge pull request #12954 from akien-mga/docs
Make module docs self-contained and various improvements
Diffstat (limited to 'editor/doc/doc_data.cpp')
-rw-r--r-- | editor/doc/doc_data.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/doc/doc_data.cpp b/editor/doc/doc_data.cpp index 0f113b11e6..f7f823c945 100644 --- a/editor/doc/doc_data.cpp +++ b/editor/doc/doc_data.cpp @@ -530,7 +530,7 @@ void DocData::generate(bool p_basic_types) { { - String cname = "@Global Scope"; + String cname = "@GlobalScope"; class_list[cname] = ClassDoc(); ClassDoc &c = class_list[cname]; c.name = cname; @@ -951,7 +951,7 @@ Error DocData::save_classes(const String &p_default_path, const Map<String, Stri if (c.category == "") category = "Core"; header += " category=\"" + category + "\""; - header += " version=\"" + String(VERSION_MKSTRING) + "\""; + header += String(" version=\"") + _MKSTR(VERSION_MAJOR) + "." + _MKSTR(VERSION_MINOR) + "-" + _MKSTR(VERSION_STATUS) + "\""; header += ">"; _write_string(f, 0, header); _write_string(f, 1, "<brief_description>"); |