File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/ImageSharp/Processing/Extensions/Filters Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments