Skip to content

Commit dfd59bb

Browse files
Update src/ImageSharp.Drawing/Processing/Extensions/ClearPathExtensions.cs
Co-authored-by: Anton Firszov <antonfir@gmail.com>
1 parent b543d83 commit dfd59bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ImageSharp.Drawing/Processing/Extensions/ClearPathExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ public static class ClearPathExtensions
1515
/// </summary>
1616
/// <param name="source">The image processing context.</param>
1717
/// <param name="color">The color.</param>
18-
/// <param name="path">The logic path.</param>
18+
/// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>
1919
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
2020
public static IImageProcessingContext Clear(
2121
this IImageProcessingContext source,
2222
Color color,
23-
IPath path) =>
23+
IPath region) =>
2424
source.Clear(new SolidBrush(color), path);
2525

2626
/// <summary>

0 commit comments

Comments
 (0)