From fd17b960e977149f026b49fb9f5ffa492982872a Mon Sep 17 00:00:00 2001 From: Michael Alexsander Silva Dias Date: Mon, 28 May 2018 14:34:41 -0300 Subject: Small changes to the comments in the script templates. --- editor/plugins/script_editor_plugin.cpp | 2 +- modules/gdscript/gdscript_editor.cpp | 24 ++++++++++++------------ modules/mono/csharp_script.cpp | 14 ++++++-------- 3 files changed, 19 insertions(+), 21 deletions(-) diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 3c0cc589dc..6708f46178 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -2862,7 +2862,7 @@ ScriptEditor::ScriptEditor(EditorNode *p_editor) { error_dialog = memnew(AcceptDialog); add_child(error_dialog); - error_dialog->get_ok()->set_text(TTR("I see..")); + error_dialog->get_ok()->set_text(TTR("I see...")); debugger = memnew(ScriptEditorDebugger(editor)); debugger->connect("goto_script_line", this, "_goto_script_line"); diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index 4286412c14..216044be43 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -54,18 +54,18 @@ void GDScriptLanguage::get_string_delimiters(List *p_delimiters) const { } Ref