1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Fix typos with codespell

Using codespell 1.16.0.

See ab3bccdb78 for procedure.
This commit is contained in:
Rémi Verschelde
2020-01-15 00:28:53 +01:00
parent 8d60f5a349
commit 40f0649e5b
4 changed files with 7 additions and 7 deletions

View File

@@ -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);