diff options
| author | Juan Linietsky | 2015-02-10 15:48:32 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-02-10 15:48:32 -0300 |
| commit | dfb94de0417b44b705596961d1a9646f10852605 (patch) | |
| tree | 46d0766c54c61a2a81023216b566e911ae7d460a | |
| parent | 66d32b75b3d8b32033936c12b9585f519316035a (diff) | |
| parent | cbade4daf6ade0f6189ec8213c307b88840bc129 (diff) | |
| download | godot-dfb94de0417b44b705596961d1a9646f10852605.tar.gz godot-dfb94de0417b44b705596961d1a9646f10852605.tar.zst godot-dfb94de0417b44b705596961d1a9646f10852605.zip | |
Merge pull request #1352 from Hinsbart/master
fix typo in script template
| -rw-r--r-- | modules/gdscript/gd_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_editor.cpp b/modules/gdscript/gd_editor.cpp index 20cd09efd..df091fbcc 100644 --- a/modules/gdscript/gd_editor.cpp +++ b/modules/gdscript/gd_editor.cpp @@ -51,7 +51,7 @@ String GDScriptLanguage::get_template(const String& p_class_name, const String& "# var a=2\n"+ "# var b=\"textvar\"\n\n"+ "func _ready():\n"+ - "\t# Initalization here\n"+ + "\t# Initialization here\n"+ "\tpass\n"+ "\n"+ "\n"; |
