Skip to content

Commit 42667dd

Browse files
committed
Update Polyfill_StringBuilder.cs
1 parent 3138945 commit 42667dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Polyfill/Polyfill_StringBuilder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ public static StringBuilder Replace(this StringBuilder target, ReadOnlySpan<char
288288
/// <remarks>
289289
/// If <paramref name="newValue"/> is empty, instances of <paramref name="oldValue"/> are removed from this builder.
290290
/// </remarks>
291-
[Link("https://learn.microsoft.com/en-us/dotnet/api/system.text.stringbuilder.replace#system-text-stringbuilder-replace(system-readonlyspan((system-char))-system-readonlyspan((system-char))-system-int32-system-int32")]
291+
[Link("https://learn.microsoft.com/en-us/dotnet/api/system.text.stringbuilder.replace#system-text-stringbuilder-replace(system-char-system-char-system-int32-system-int32)")]
292292
public static StringBuilder Replace(this StringBuilder target, ReadOnlySpan<char> oldValue, ReadOnlySpan<char> newValue, int startIndex, int count) =>
293293
target.Replace(oldValue.ToString(), newValue.ToString(), startIndex, count);
294294
#endif

0 commit comments

Comments
 (0)