@@ -130,11 +130,11 @@ public static bool TrimmedEquals(this string? source, in ReadOnlySpan<char> othe
130130 } ;
131131 }
132132
133- /// <inheritdoc cref="TrimmedEquals(string, in ReadOnlySpan{char}, StringComparison)"/>
134133 /// <summary>
135134 /// Optimized equals for comparing a trimmed string with another string.
136135 /// </summary>
137136 /// <param name="other">The string to compare to.</param>
137+ /// <inheritdoc cref="TrimmedEquals(string, in ReadOnlySpan{char}, StringComparison)"/>
138138 public static bool TrimmedEquals ( this string ? source , string ? other , StringComparison stringComparison = StringComparison . Ordinal )
139139 {
140140 if ( source is null ) return other is null ;
@@ -153,8 +153,8 @@ public static bool TrimmedEquals(this string? source, string? other, StringCompa
153153 }
154154
155155
156- /// <inheritdoc cref="TrimmedEquals(string, in ReadOnlySpan{char}, StringComparison)"/>
157156 /// <param name="trimChar">The character to trim.</param>
157+ /// <inheritdoc cref="TrimmedEquals(string, in ReadOnlySpan{char}, StringComparison)"/>
158158 public static bool TrimmedEquals ( this string ? source , in ReadOnlySpan < char > other , char trimChar , StringComparison stringComparison = StringComparison . Ordinal )
159159 {
160160 if ( source is null ) return false ;
@@ -171,8 +171,8 @@ public static bool TrimmedEquals(this string? source, in ReadOnlySpan<char> othe
171171 } ;
172172 }
173173
174- /// <inheritdoc cref="TrimmedEquals(string?, string?, StringComparison)"/>
175174 /// <param name="trimChar">The character to trim.</param>
175+ /// <inheritdoc cref="TrimmedEquals(string?, string?, StringComparison)"/>
176176 public static bool TrimmedEquals ( this string ? source , string ? other , char trimChar , StringComparison stringComparison = StringComparison . Ordinal )
177177 {
178178 if ( source is null ) return other is null ;
@@ -190,8 +190,8 @@ public static bool TrimmedEquals(this string? source, string? other, char trimCh
190190 } ;
191191 }
192192
193- /// <inheritdoc cref="TrimmedEquals(string, in ReadOnlySpan{char}, StringComparison)"/>
194193 /// <param name="trimChars">The characters to trim.</param>
194+ /// <inheritdoc cref="TrimmedEquals(string, in ReadOnlySpan{char}, StringComparison)"/>
195195 public static bool TrimmedEquals ( this string ? source , in ReadOnlySpan < char > other , in ReadOnlySpan < char > trimChars , StringComparison stringComparison = StringComparison . Ordinal )
196196 {
197197 if ( source is null ) return false ;
@@ -208,8 +208,8 @@ public static bool TrimmedEquals(this string? source, in ReadOnlySpan<char> othe
208208 } ;
209209 }
210210
211- /// <inheritdoc cref="TrimmedEquals(string?, string?, StringComparison)"/>
212211 /// <param name="trimChars">The characters to trim.</param>
212+ /// <inheritdoc cref="TrimmedEquals(string?, string?, StringComparison)"/>
213213 public static bool TrimmedEquals ( this string ? source , string ? other , in ReadOnlySpan < char > trimChars , StringComparison stringComparison = StringComparison . Ordinal )
214214 {
215215 if ( source is null ) return other is null ;
0 commit comments