Skip to content

Commit 60299fb

Browse files
Merge pull request #1139 from gregleon/patch-1
Fix typos in FilterExtensions.cs
2 parents fab07ab + e771eb4 commit 60299fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ImageSharp/Processing/Extensions/Filters/FilterExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace SixLabors.ImageSharp.Processing
1212
public static class FilterExtensions
1313
{
1414
/// <summary>
15-
/// Filters an image but the given color matrix
15+
/// Filters an image by the given color matrix
1616
/// </summary>
1717
/// <param name="source">The image this method extends.</param>
1818
/// <param name="matrix">The filter color matrix</param>
@@ -21,7 +21,7 @@ public static IImageProcessingContext Filter(this IImageProcessingContext source
2121
=> source.ApplyProcessor(new FilterProcessor(matrix));
2222

2323
/// <summary>
24-
/// Filters an image but the given color matrix
24+
/// Filters an image by the given color matrix
2525
/// </summary>
2626
/// <param name="source">The image this method extends.</param>
2727
/// <param name="matrix">The filter color matrix</param>
@@ -32,4 +32,4 @@ public static IImageProcessingContext Filter(this IImageProcessingContext source
3232
public static IImageProcessingContext Filter(this IImageProcessingContext source, ColorMatrix matrix, Rectangle rectangle)
3333
=> source.ApplyProcessor(new FilterProcessor(matrix), rectangle);
3434
}
35-
}
35+
}

0 commit comments

Comments
 (0)