1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix various typos with codespell

And include #72377.

Co-authored-by: Wiktor Kocielski <withaust@gmail.com>
This commit is contained in:
Rémi Verschelde
2023-01-30 14:22:47 +01:00
parent 6bdc4ea88c
commit 312011fade
8 changed files with 9 additions and 9 deletions

View File

@@ -109,7 +109,7 @@ Vector<String> _split_pascal_case(const String &p_identifier) {
if (!is_digit(p_identifier[i])) {
// These conditions only apply when the separator is not a digit.
if (i - current_part_start == 1) {
// Upper character was only the beggining of a word.
// Upper character was only the beginning of a word.
prev_was_upper = false;
continue;
}