From 6ecb92a1fc26e763b35d83a826fae3198c050a91 Mon Sep 17 00:00:00 2001 From: Raul Santos Date: Thu, 27 Jan 2022 03:04:16 +0100 Subject: [PATCH] Rename C# `IsSubsequenceOfI` to `IsSubsequenceOfN` --- .../mono/glue/GodotSharp/GodotSharp/Core/StringExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }