Browse Source

Fixed reference in comments.

af/merge-core
dirk 9 years ago
parent
commit
3f7d80ddb7
  1. 2
      src/ImageSharp/Filters/Processors/BackgroundColorProcessor.cs
  2. 6
      src/ImageSharp/Quantizers/Octree/OctreeQuantizer.cs

2
src/ImageSharp/Filters/Processors/BackgroundColorProcessor.cs

@ -26,7 +26,7 @@ namespace ImageSharp.Processors
/// <summary>
/// Initializes a new instance of the <see cref="BackgroundColorProcessor{TColor, TPacked}"/> class.
/// </summary>
/// <param name="color">The <see cref="TColor"/> to set the background color to.</param>
/// <param name="color">The <typeparamref name="TColor"/> to set the background color to.</param>
public BackgroundColorProcessor(TColor color)
{
this.Value = color;

6
src/ImageSharp/Quantizers/Octree/OctreeQuantizer.cs

@ -171,7 +171,7 @@ namespace ImageSharp.Quantizers
/// Add a given color value to the Octree
/// </summary>
/// <param name="pixel">
/// The <see cref="TColor"/>containing color information to add.
/// The <typeparamref name="TColor"/> containing color information to add.
/// </param>
public void AddColor(TColor pixel)
{
@ -226,7 +226,7 @@ namespace ImageSharp.Quantizers
/// <summary>
/// Get the palette index for the passed color
/// </summary>
/// <param name="pixel">The <see cref="TColor"/> containing the pixel data.</param>
/// <param name="pixel">The <typeparamref name="TColor"/> containing the pixel data.</param>
/// <returns>
/// The index of the given structure.
/// </returns>
@ -466,7 +466,7 @@ namespace ImageSharp.Quantizers
/// <summary>
/// Return the palette index for the passed color
/// </summary>
/// <param name="pixel">The <see cref="TColor"/> representing the pixel.</param>
/// <param name="pixel">The <typeparamref name="TColor"/> representing the pixel.</param>
/// <param name="level">The level.</param>
/// <returns>
/// The <see cref="int"/> representing the index of the pixel in the palette.

Loading…
Cancel
Save