diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-17 18:36:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-17 18:36:08 +0200 |
commit | c8e17b5a30d63b06aec9c6226cbe1e4fbe37f1b9 (patch) | |
tree | a159d502c841477e6b3a06cad4cc9e7b8725df14 /modules | |
parent | 7320871ffa8885ddd7ebedd08ae1fc85b87f5dc3 (diff) | |
parent | d3a839f4b191974341ceb4edf550878947dd2b55 (diff) |
Merge pull request #62069 from iamjsk10/master
Typo: Changed "forech" into "foreach" in string_utils.cpp
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/utils/string_utils.cpp | 2 |
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" || |