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
No known key found for this signature in database
GPG key ID: C3336907360768E1
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;
}