summaryrefslogtreecommitdiffstats
path: root/editor/plugins/script_editor_plugin.h
diff options
context:
space:
mode:
authorRedMser <redmser.jj2@gmail.com>2024-07-17 18:44:27 +0200
committerRedMser <redmser.jj2@gmail.com>2024-07-17 18:53:03 +0200
commitf9258ff928fb949eb5ccf4829cb85369a54b48cf (patch)
tree22ee989309d7c86fff2d980cde81151c196abbff /editor/plugins/script_editor_plugin.h
parentda4f6e439c0daec87d3f87f86b5b4592fca44fdb (diff)
downloadredot-engine-f9258ff928fb949eb5ccf4829cb85369a54b48cf.tar.gz
Fix typos
Diffstat (limited to 'editor/plugins/script_editor_plugin.h')
-rw-r--r--editor/plugins/script_editor_plugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/script_editor_plugin.h b/editor/plugins/script_editor_plugin.h
index 9db1aff76a..64b87f0da7 100644
--- a/editor/plugins/script_editor_plugin.h
+++ b/editor/plugins/script_editor_plugin.h
@@ -55,7 +55,7 @@ class EditorSyntaxHighlighter : public SyntaxHighlighter {
GDCLASS(EditorSyntaxHighlighter, SyntaxHighlighter)
private:
- Ref<RefCounted> edited_resourse;
+ Ref<RefCounted> edited_resource;
protected:
static void _bind_methods();
@@ -67,8 +67,8 @@ public:
virtual String _get_name() const;
virtual PackedStringArray _get_supported_languages() const;
- void _set_edited_resource(const Ref<Resource> &p_res) { edited_resourse = p_res; }
- Ref<RefCounted> _get_edited_resource() { return edited_resourse; }
+ void _set_edited_resource(const Ref<Resource> &p_res) { edited_resource = p_res; }
+ Ref<RefCounted> _get_edited_resource() { return edited_resource; }
virtual Ref<EditorSyntaxHighlighter> _create() const;
};