diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-03-09 15:03:03 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-03-09 15:03:03 +0800 |
commit | 851ed8886c3bdeee1905b60e168bf957c81bfd77 (patch) | |
tree | 502cff088a6a604fb72729d8feed86c841f15e0b /modules/mono | |
parent | f726ba37ec36b2232f0a54ce3576381477ab1aff (diff) |
Fix Autoload capitalization inconsistency
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/editor/code_completion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/code_completion.cpp b/modules/mono/editor/code_completion.cpp index 095fd831a3..3a41b3f6f5 100644 --- a/modules/mono/editor/code_completion.cpp +++ b/modules/mono/editor/code_completion.cpp @@ -120,7 +120,7 @@ PackedStringArray get_code_completion(CompletionKind p_kind, const String &p_scr } break; case CompletionKind::NODE_PATHS: { { - // AutoLoads + // Autoloads. OrderedHashMap<StringName, ProjectSettings::AutoloadInfo> autoloads = ProjectSettings::get_singleton()->get_autoload_list(); for (OrderedHashMap<StringName, ProjectSettings::AutoloadInfo>::Element E = autoloads.front(); E; E = E.next()) { |