summaryrefslogtreecommitdiff
path: root/modules/mono
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-01-30 14:22:47 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-01-30 14:22:47 +0100
commit312011fadec12c98eb14791bb0b19c63463d98ae (patch)
tree9266aeabca1f2d343420e1c19242f9208f40e82d /modules/mono
parent6bdc4ea88c283f5ec29278caaee5a019bca5e82f (diff)
Fix various typos with codespell
And include #72377. Co-authored-by: Wiktor Kocielski <withaust@gmail.com>
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/utils/naming_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/utils/naming_utils.cpp b/modules/mono/utils/naming_utils.cpp
index dc9bc3485a..62fbf815f8 100644
--- a/modules/mono/utils/naming_utils.cpp
+++ b/modules/mono/utils/naming_utils.cpp
@@ -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;
}