summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_editor.cpp
diff options
context:
space:
mode:
authorMax Hilbrunner <mhilbrunner@users.noreply.github.com>2018-05-24 01:21:17 +0200
committerGitHub <noreply@github.com>2018-05-24 01:21:17 +0200
commitaee8d262528497298a50ff2b25eefd8dce18c033 (patch)
tree1eb327a5847ef40e3549be818f286997f4824b73 /modules/gdscript/gdscript_editor.cpp
parent0fa3e302631f22a0a6495464d185c07add9be7a3 (diff)
parent4e257293d9b074b272350bfe88c891dec6632a14 (diff)
downloadredot-engine-aee8d262528497298a50ff2b25eefd8dce18c033.tar.gz
Merge pull request #19131 from YeldhamDev/connection_comment_capitalize
Capitalized comments of methods created by the Connect Signal dialog
Diffstat (limited to 'modules/gdscript/gdscript_editor.cpp')
-rw-r--r--modules/gdscript/gdscript_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp
index 30ef167466..4286412c14 100644
--- a/modules/gdscript/gdscript_editor.cpp
+++ b/modules/gdscript/gdscript_editor.cpp
@@ -416,7 +416,7 @@ String GDScriptLanguage::make_function(const String &p_class, const String &p_na
s += p_args[i].get_slice(":", 0);
}
}
- s += "):\n" + _get_indentation() + "pass # replace with function body\n";
+ s += "):\n" + _get_indentation() + "pass # Replace with function body.\n";
return s;
}