summaryrefslogtreecommitdiff
path: root/modules/mono
diff options
context:
space:
mode:
authoriamjsk10 <98348336+iamjsk10@users.noreply.github.com>2022-06-15 17:18:24 +0530
committerRĂ©mi Verschelde <rverschelde@gmail.com>2022-06-17 13:03:32 +0200
commitd3a839f4b191974341ceb4edf550878947dd2b55 (patch)
tree7cf72f48b703b135f5dc71e7ebf35e0082b50122 /modules/mono
parent778a9fce77322b1f0ab3014d586f2c451dc56da2 (diff)
Mono: Fix typo to `foreach` C# keyword
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/utils/string_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/utils/string_utils.cpp b/modules/mono/utils/string_utils.cpp
index e6975611d2..64b68b70af 100644
--- a/modules/mono/utils/string_utils.cpp
+++ b/modules/mono/utils/string_utils.cpp
@@ -145,7 +145,7 @@ bool is_csharp_keyword(const String &p_name) {
p_name == "do" || p_name == "double" || p_name == "else" || p_name == "enum" ||
p_name == "event" || p_name == "explicit" || p_name == "extern" || p_name == "false" ||
p_name == "finally" || p_name == "fixed" || p_name == "float" || p_name == "for" ||
- p_name == "forech" || p_name == "goto" || p_name == "if" || p_name == "implicit" ||
+ p_name == "foreach" || p_name == "goto" || p_name == "if" || p_name == "implicit" ||
p_name == "in" || p_name == "int" || p_name == "interface" || p_name == "internal" ||
p_name == "is" || p_name == "lock" || p_name == "long" || p_name == "namespace" ||
p_name == "new" || p_name == "null" || p_name == "object" || p_name == "operator" ||