diff options
author | Hinsbart <entenflugstuhl@gmail.com> | 2015-02-10 19:39:52 +0100 |
---|---|---|
committer | Hinsbart <entenflugstuhl@gmail.com> | 2015-02-10 19:39:52 +0100 |
commit | cbade4daf6ade0f6189ec8213c307b88840bc129 (patch) | |
tree | 46d0766c54c61a2a81023216b566e911ae7d460a /modules/gdscript | |
parent | 66d32b75b3d8b32033936c12b9585f519316035a (diff) |
fix typo in script template
Diffstat (limited to 'modules/gdscript')
-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 20cd09efd0..df091fbcc9 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"; |