mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix some typos in source.
This commit is contained in:
parent
f5696c311c
commit
4c65ff52e4
3 changed files with 7 additions and 7 deletions
|
|
@ -113,7 +113,7 @@ public:
|
|||
// GDScript keywords.
|
||||
RegEx keyword_gdscript_tool = RegEx("^tool");
|
||||
RegEx keyword_gdscript_export_single = RegEx("^export");
|
||||
RegEx keyword_gdscript_export_mutli = RegEx("([\t]+)export\\b");
|
||||
RegEx keyword_gdscript_export_multi = RegEx("([\t]+)export\\b");
|
||||
RegEx keyword_gdscript_onready = RegEx("^onready");
|
||||
RegEx keyword_gdscript_remote = RegEx("^remote func");
|
||||
RegEx keyword_gdscript_remotesync = RegEx("^remotesync func");
|
||||
|
|
@ -2548,7 +2548,7 @@ void ProjectConverter3To4::rename_gdscript_keywords(Vector<SourceLine> &source_l
|
|||
line = reg_container.keyword_gdscript_export_single.sub(line, "@export", true);
|
||||
}
|
||||
if (line.contains("export")) {
|
||||
line = reg_container.keyword_gdscript_export_mutli.sub(line, "$1@export", true);
|
||||
line = reg_container.keyword_gdscript_export_multi.sub(line, "$1@export", true);
|
||||
}
|
||||
if (line.contains("onready")) {
|
||||
line = reg_container.keyword_gdscript_onready.sub(line, "@onready", true);
|
||||
|
|
@ -2607,7 +2607,7 @@ Vector<String> ProjectConverter3To4::check_for_rename_gdscript_keywords(Vector<S
|
|||
|
||||
if (line.contains("export")) {
|
||||
old = line;
|
||||
line = reg_container.keyword_gdscript_export_mutli.sub(line, "@export", true);
|
||||
line = reg_container.keyword_gdscript_export_multi.sub(line, "@export", true);
|
||||
if (old != line) {
|
||||
found_renames.append(line_formatter(current_line, "export", "@export", line));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue