Skip to content

Commit

Permalink
fix casing of Replace method
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyluggi authored and Jan0660 committed May 17, 2024
1 parent 772952b commit b024f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ await Parallel.ForEachAsync(items, async (item, _) =>
extMethod)
: false));
if (method == null)
str.AppendLine($"* {extMethod.replace("{", "{").replace("}", "}")}");
str.AppendLine($"* {extMethod.Replace("{", "{").Replace("}", "}")}");
else
str.AppendLine($"* {Link(method.Uid, isGroupedType)}");
}
Expand Down

0 comments on commit b024f51

Please sign in to comment.