diff --git a/src/ImageSharp.Drawing/FillRegion.cs b/src/ImageSharp.Drawing/FillRegion.cs
index c634d6e64..fbbf659d1 100644
--- a/src/ImageSharp.Drawing/FillRegion.cs
+++ b/src/ImageSharp.Drawing/FillRegion.cs
@@ -50,9 +50,7 @@ namespace ImageSharp
/// The brush.
/// The region.
/// The graphics options.
- ///
- /// The Image
- ///
+ /// The .
public static Image Fill(this Image source, IBrush brush, Region region, GraphicsOptions options)
where TColor : struct, IPackedPixel, IEquatable
{
@@ -66,9 +64,7 @@ namespace ImageSharp
/// The image this method extends.
/// The brush.
/// The region.
- ///
- /// The Image
- ///
+ /// The .
public static Image Fill(this Image source, IBrush brush, Region region)
where TColor : struct, IPackedPixel, IEquatable
{
@@ -83,9 +79,7 @@ namespace ImageSharp
/// The color.
/// The region.
/// The options.
- ///
- /// The Image
- ///
+ /// The .
public static Image Fill(this Image source, TColor color, Region region, GraphicsOptions options)
where TColor : struct, IPackedPixel, IEquatable
{
@@ -99,9 +93,7 @@ namespace ImageSharp
/// The image this method extends.
/// The color.
/// The region.
- ///
- /// The Image
- ///
+ /// The .
public static Image Fill(this Image source, TColor color, Region region)
where TColor : struct, IPackedPixel, IEquatable
{
diff --git a/src/ImageSharp.Drawing/Processors/FillRegionProcessor.cs b/src/ImageSharp.Drawing/Processors/FillRegionProcessor.cs
index 67c3ad176..6a37a1ae5 100644
--- a/src/ImageSharp.Drawing/Processors/FillRegionProcessor.cs
+++ b/src/ImageSharp.Drawing/Processors/FillRegionProcessor.cs
@@ -39,17 +39,11 @@ namespace ImageSharp.Drawing.Processors
///
/// Gets the brush.
///
- ///
- /// The brush.
- ///
public IBrush Brush { get; }
///
- /// Gets the region.
+ /// Gets the region that this processor applies to.
///
- ///
- /// The region.
- ///
public Region Region { get; }
///