Browse Source

fix some typos in documentation.

af/merge-core
Unknown 8 years ago
parent
commit
a14c852ff2
  1. 2
      src/ImageSharp/Advanced/IConfigurable.cs
  2. 12
      src/ImageSharp/PixelFormats/PixelBlenderMode.cs

2
src/ImageSharp/Advanced/IConfigurable.cs

@ -4,7 +4,7 @@
namespace SixLabors.ImageSharp.Advanced namespace SixLabors.ImageSharp.Advanced
{ {
/// <summary> /// <summary>
/// Encapsulates the properties for configuration /// Encapsulates the properties for configuration.
/// </summary> /// </summary>
internal interface IConfigurable internal interface IConfigurable
{ {

12
src/ImageSharp/PixelFormats/PixelBlenderMode.cs

@ -64,17 +64,17 @@ namespace SixLabors.ImageSharp.PixelFormats
Atop, Atop,
/// <summary> /// <summary>
/// returns the detination over the source /// returns the destination over the source
/// </summary> /// </summary>
Over, Over,
/// <summary> /// <summary>
/// the source where the desitnation and source overlap /// the source where the destination and source overlap
/// </summary> /// </summary>
In, In,
/// <summary> /// <summary>
/// the destination where the desitnation and source overlap /// the destination where the destination and source overlap
/// </summary> /// </summary>
Out, Out,
@ -89,17 +89,17 @@ namespace SixLabors.ImageSharp.PixelFormats
DestAtop, DestAtop,
/// <summary> /// <summary>
/// the destnation over the source /// the destination over the source
/// </summary> /// </summary>
DestOver, DestOver,
/// <summary> /// <summary>
/// the destination where the desitnation and source overlap /// the destination where the destination and source overlap
/// </summary> /// </summary>
DestIn, DestIn,
/// <summary> /// <summary>
/// the source where the desitnation and source overlap /// the source where the destination and source overlap
/// </summary> /// </summary>
DestOut, DestOut,

Loading…
Cancel
Save