Browse Source

Comment fixes.

af/merge-core
dirk 9 years ago
parent
commit
b4eb8dcd5f
  1. 2
      src/ImageSharp/Filters/Processors/ColorMatrix/HueProcessor.cs
  2. 2
      src/ImageSharp/Filters/Processors/ColorMatrix/SaturationProcessor.cs

2
src/ImageSharp/Filters/Processors/ColorMatrix/HueProcessor.cs

@ -9,7 +9,7 @@ namespace ImageSharp.Processors
using System.Numerics;
/// <summary>
/// An <see cref="IImageProcessor{TColor, TPacked}"/> to change the hue of an <see cref="Image{TColor, TPacked}"/>.
/// An <see cref="ImageProcessor{TColor, TPacked}"/> to change the hue of an <see cref="Image{TColor, TPacked}"/>.
/// </summary>
/// <typeparam name="TColor">The pixel format.</typeparam>
/// <typeparam name="TPacked">The packed format. <example>uint, long, float.</example></typeparam>

2
src/ImageSharp/Filters/Processors/ColorMatrix/SaturationProcessor.cs

@ -8,7 +8,7 @@ namespace ImageSharp.Processors
using System.Numerics;
/// <summary>
/// An <see cref="IImageProcessor{TColor, TPacked}"/> to change the saturation of an <see cref="Image{TColor, TPacked}"/>.
/// An <see cref="ImageProcessor{TColor, TPacked}"/> to change the saturation of an <see cref="Image{TColor, TPacked}"/>.
/// </summary>
/// <typeparam name="TColor">The pixel format.</typeparam>
/// <typeparam name="TPacked">The packed format. <example>uint, long, float.</example></typeparam>

Loading…
Cancel
Save