summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-01-15 00:28:53 +0100
committerRémi Verschelde <rverschelde@gmail.com>2020-01-15 00:49:52 +0100
commit40f0649e5b02037cb4745c336170e1e5422467ed (patch)
tree16dae32393ce2eec2c19b8b54e9849d75d25573f /editor/code_editor.cpp
parent8d60f5a34940238383e13b9a63d9d2a1af6e21bb (diff)
downloadredot-engine-40f0649e5b02037cb4745c336170e1e5422467ed.tar.gz
Fix typos with codespell
Using codespell 1.16.0. See ab3bccdb78cc7dffb6ab796053ef63489f05558d for procedure.
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r--editor/code_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index fa713349d4..4f684c7bdc 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -1184,7 +1184,7 @@ void CodeTextEditor::move_lines_down() {
void CodeTextEditor::_delete_line(int p_line) {
// this is currently intended to be called within delete_lines()
- // so `begin_complex_operation` is ommitted here
+ // so `begin_complex_operation` is omitted here
text_editor->set_line(p_line, "");
if (p_line == 0 && text_editor->get_line_count() > 1) {
text_editor->cursor_set_line(1);