diff --git a/src/ImageSharp/Advanced/IConfigurable.cs b/src/ImageSharp/Advanced/IConfigurable.cs
index fd97ae921..38fc83ae1 100644
--- a/src/ImageSharp/Advanced/IConfigurable.cs
+++ b/src/ImageSharp/Advanced/IConfigurable.cs
@@ -4,7 +4,7 @@
namespace SixLabors.ImageSharp.Advanced
{
///
- /// Encapsulates the properties for configuration
+ /// Encapsulates the properties for configuration.
///
internal interface IConfigurable
{
diff --git a/src/ImageSharp/PixelFormats/PixelBlenderMode.cs b/src/ImageSharp/PixelFormats/PixelBlenderMode.cs
index 4b8f56d76..d0cbff770 100644
--- a/src/ImageSharp/PixelFormats/PixelBlenderMode.cs
+++ b/src/ImageSharp/PixelFormats/PixelBlenderMode.cs
@@ -64,17 +64,17 @@ namespace SixLabors.ImageSharp.PixelFormats
Atop,
///
- /// returns the detination over the source
+ /// returns the destination over the source
///
Over,
///
- /// the source where the desitnation and source overlap
+ /// the source where the destination and source overlap
///
In,
///
- /// the destination where the desitnation and source overlap
+ /// the destination where the destination and source overlap
///
Out,
@@ -89,17 +89,17 @@ namespace SixLabors.ImageSharp.PixelFormats
DestAtop,
///
- /// the destnation over the source
+ /// the destination over the source
///
DestOver,
///
- /// the destination where the desitnation and source overlap
+ /// the destination where the destination and source overlap
///
DestIn,
///
- /// the source where the desitnation and source overlap
+ /// the source where the destination and source overlap
///
DestOut,