Browse Source

Fix typos in FilterExtensions.cs

pull/1139/head
Greg 6 years ago
committed by GitHub
parent
commit
0e83ee3c4f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/ImageSharp/Processing/Extensions/Filters/FilterExtensions.cs

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

@ -12,7 +12,7 @@ namespace SixLabors.ImageSharp.Processing
public static class FilterExtensions
{
/// <summary>
/// Filters an image but the given color matrix
/// Filters an image by the given color matrix
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="matrix">The filter color matrix</param>
@ -21,7 +21,7 @@ namespace SixLabors.ImageSharp.Processing
=> source.ApplyProcessor(new FilterProcessor(matrix));
/// <summary>
/// Filters an image but the given color matrix
/// Filters an image by the given color matrix
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="matrix">The filter color matrix</param>
@ -32,4 +32,4 @@ namespace SixLabors.ImageSharp.Processing
public static IImageProcessingContext Filter(this IImageProcessingContext source, ColorMatrix matrix, Rectangle rectangle)
=> source.ApplyProcessor(new FilterProcessor(matrix), rectangle);
}
}
}

Loading…
Cancel
Save