diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs index a89dca6c347..eba0ea9a790 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs @@ -727,7 +727,7 @@ namespace Godot /// /// Check whether this string is a subsequence of the given string. /// - /// + /// /// The subsequence to search. /// The string that contains the subsequence. /// If , the check is case sensitive. @@ -779,7 +779,7 @@ namespace Godot /// The subsequence to search. /// The string that contains the subsequence. /// If the string is a subsequence of the given string. - public static bool IsSubsequenceOfI(this string instance, string text) + public static bool IsSubsequenceOfN(this string instance, string text) { return instance.IsSubsequenceOf(text, caseSensitive: false); }