Browse Source

fix some typos in documentation.

pull/542/head
Unknown 8 years ago
parent
commit
4975eae774
  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
{
/// <summary>
/// Encapsulates the properties for configuration
/// Encapsulates the properties for configuration.
/// </summary>
internal interface IConfigurable
{

12
src/ImageSharp/PixelFormats/PixelBlenderMode.cs

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

Loading…
Cancel
Save