Browse Source

Minor comment change.

af/merge-core
Dirk Lemstra 9 years ago
committed by Dirk Lemstra
parent
commit
df963df9cb
  1. 4
      src/ImageSharp.Formats.Gif/GifDecoderOptions.cs
  2. 2
      src/ImageSharp.Formats.Gif/IGifDecoderOptions.cs
  3. 2
      src/ImageSharp.Formats.Png/IPngDecoderOptions.cs
  4. 4
      src/ImageSharp.Formats.Png/PngDecoderOptions.cs

4
src/ImageSharp.Formats.Gif/GifDecoderOptions.cs

@ -8,7 +8,7 @@ namespace ImageSharp.Formats
using System.Text;
/// <summary>
/// Encapsulates the gif decoder options.
/// Encapsulates the options for the <see cref="GifDecoder"/>.
/// </summary>
public sealed class GifDecoderOptions : DecoderOptions, IGifDecoderOptions
{
@ -40,7 +40,7 @@ namespace ImageSharp.Formats
/// or by creating a new instance with the specfied options.
/// </summary>
/// <param name="options">The options for the decoder.</param>
/// <returns>The options for the png decoder.</returns>
/// <returns>The options for the <see cref="GifDecoder"/>.</returns>
internal static IGifDecoderOptions Create(IDecoderOptions options)
{
IGifDecoderOptions gifOptions = options as IGifDecoderOptions;

2
src/ImageSharp.Formats.Gif/IGifDecoderOptions.cs

@ -8,7 +8,7 @@ namespace ImageSharp.Formats
using System.Text;
/// <summary>
/// Encapsulates the gif decoder options.
/// Encapsulates the options for the <see cref="GifDecoder"/>.
/// </summary>
public interface IGifDecoderOptions : IDecoderOptions
{

2
src/ImageSharp.Formats.Png/IPngDecoderOptions.cs

@ -8,7 +8,7 @@ namespace ImageSharp.Formats
using System.Text;
/// <summary>
/// Encapsulates the png decoder options.
/// Encapsulates the options for the <see cref="PngDecoder"/>.
/// </summary>
public interface IPngDecoderOptions : IDecoderOptions
{

4
src/ImageSharp.Formats.Png/PngDecoderOptions.cs

@ -8,7 +8,7 @@ namespace ImageSharp.Formats
using System.Text;
/// <summary>
/// Encapsulates the png decoder options.
/// Encapsulates the options for the <see cref="PngDecoder"/>.
/// </summary>
public sealed class PngDecoderOptions : DecoderOptions, IPngDecoderOptions
{
@ -40,7 +40,7 @@ namespace ImageSharp.Formats
/// or by creating a new instance with the specfied options.
/// </summary>
/// <param name="options">The options for the decoder.</param>
/// <returns>The options for the png decoder.</returns>
/// <returns>The options for the <see cref="PngDecoder"/>.</returns>
internal static IPngDecoderOptions Create(IDecoderOptions options)
{
IPngDecoderOptions pngOptions = options as IPngDecoderOptions;

Loading…
Cancel
Save