diff --git a/src/ImageSharp.Drawing/ImageSharp.Drawing.csproj b/src/ImageSharp.Drawing/ImageSharp.Drawing.csproj
index cdb48dad..6f7fe1bd 100644
--- a/src/ImageSharp.Drawing/ImageSharp.Drawing.csproj
+++ b/src/ImageSharp.Drawing/ImageSharp.Drawing.csproj
@@ -20,8 +20,8 @@
-
-
+
+
diff --git a/src/ImageSharp.Drawing/Processing/Extensions/DrawLineExtensions.cs b/src/ImageSharp.Drawing/Processing/Extensions/DrawLineExtensions.cs
index 9d187025..6e1f0cc4 100644
--- a/src/ImageSharp.Drawing/Processing/Extensions/DrawLineExtensions.cs
+++ b/src/ImageSharp.Drawing/Processing/Extensions/DrawLineExtensions.cs
@@ -6,17 +6,17 @@
namespace SixLabors.ImageSharp.Drawing.Processing
{
///
- /// Adds extensions that allow the drawing of lines to the type.
+ /// Adds extensions that allow the drawing of lines.
///
public static class DrawLineExtensions
{
///
- /// Draws the provided Points as an open Linear path at the provided thickness with the supplied brush
+ /// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
///
- /// The image this method extends.
+ /// The image processing context.
/// The options.
/// The brush.
- /// The thickness.
+ /// The line thickness.
/// The points.
/// The to allow chaining of operations.
public static IImageProcessingContext DrawLines(
@@ -28,11 +28,11 @@ public static IImageProcessingContext DrawLines(
source.Draw(options, new Pen(brush, thickness), new Path(new LinearLineSegment(points)));
///
- /// Draws the provided Points as an open Linear path at the provided thickness with the supplied brush
+ /// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
///
- /// The image this method extends.
+ /// The image processing context.
/// The brush.
- /// The thickness.
+ /// The line thickness.
/// The points.
/// The to allow chaining of operations.
public static IImageProcessingContext DrawLines(
@@ -43,11 +43,11 @@ public static IImageProcessingContext DrawLines(
source.Draw(new Pen(brush, thickness), new Path(new LinearLineSegment(points)));
///
- /// Draws the provided Points as an open Linear path at the provided thickness with the supplied brush
+ /// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
///
- /// The image this method extends.
+ /// The image processing context.
/// The color.
- /// The thickness.
+ /// The line thickness.
/// The points.
/// The to allow chaining of operations.
public static IImageProcessingContext DrawLines(
@@ -58,12 +58,12 @@ public static IImageProcessingContext DrawLines(
source.DrawLines(new SolidBrush(color), thickness, points);
///
- /// Draws the provided Points as an open Linear path at the provided thickness with the supplied brush
+ /// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
///
- /// The image this method extends.
+ /// The image processing context.
/// The options.
/// The color.
- /// The thickness.
+ /// The line thickness.
/// The points.
/// The to allow chaining of operations.>
public static IImageProcessingContext DrawLines(
@@ -75,9 +75,9 @@ public static IImageProcessingContext DrawLines(
source.DrawLines(options, new SolidBrush(color), thickness, points);
///
- /// Draws the provided Points as an open Linear path with the supplied pen
+ /// Draws the provided points as an open linear path with the supplied pen.
///
- /// The image this method extends.
+ /// The image processing context.
/// The options.
/// The pen.
/// The points.
@@ -90,9 +90,9 @@ public static IImageProcessingContext DrawLines(
source.Draw(options, pen, new Path(new LinearLineSegment(points)));
///
- /// Draws the provided Points as an open Linear path with the supplied pen
+ /// Draws the provided points as an open linear path with the supplied pen.
///
- /// The image this method extends.
+ /// The image processing context.
/// The pen.
/// The points.
/// The to allow chaining of operations.
diff --git a/src/ImageSharp.Drawing/Processing/Extensions/DrawPolygonExtensions.cs b/src/ImageSharp.Drawing/Processing/Extensions/DrawPolygonExtensions.cs
index 138dae83..240310a9 100644
--- a/src/ImageSharp.Drawing/Processing/Extensions/DrawPolygonExtensions.cs
+++ b/src/ImageSharp.Drawing/Processing/Extensions/DrawPolygonExtensions.cs
@@ -6,12 +6,12 @@
namespace SixLabors.ImageSharp.Drawing.Processing
{
///
- /// Adds extensions that allow the drawing of closed linear polygons to the type.
+ /// Adds extensions that allow the drawing of closed linear polygons.
///
public static class DrawPolygonExtensions
{
///
- /// Draws the provided Points as a closed Linear Polygon with the provided Pen.
+ /// Draws the provided points as a closed linear polygon with the provided pen.
///
/// The image this method extends.
/// The pen.
@@ -24,7 +24,7 @@ public static IImageProcessingContext DrawPolygon(
source.Draw(source.GetDrawingOptions(), pen, new Polygon(new LinearLineSegment(points)));
///
- /// Draws the provided Points as a closed Linear Polygon with the provided Pen.
+ /// Draws the provided points as a closed linear polygon with the provided pen.
///
/// The image this method extends.
/// The options.
@@ -39,7 +39,7 @@ public static IImageProcessingContext DrawPolygon(
source.Draw(options, pen, new Polygon(new LinearLineSegment(points)));
///
- /// Draws the provided Points as a closed Linear Polygon with the provided brush at the provided thickness.
+ /// Draws the provided points as a closed linear polygon with the provided brush at the provided thickness.
///
/// The image this method extends.
/// The options.
@@ -56,7 +56,7 @@ public static IImageProcessingContext DrawPolygon(
source.DrawPolygon(options, new Pen(brush, thickness), points);
///
- /// Draws the provided Points as a closed Linear Polygon with the provided brush at the provided thickness.
+ /// Draws the provided points as a closed linear polygon with the provided brush at the provided thickness.
///
/// The image this method extends.
/// The brush.
@@ -71,7 +71,7 @@ public static IImageProcessingContext DrawPolygon(
source.DrawPolygon(new Pen(brush, thickness), points);
///
- /// Draws the provided Points as a closed Linear Polygon with the provided brush at the provided thickness.
+ /// Draws the provided points as a closed linear polygon with the provided brush at the provided thickness.
///
/// The image this method extends.
/// The color.
@@ -86,7 +86,7 @@ public static IImageProcessingContext DrawPolygon(
source.DrawPolygon(new SolidBrush(color), thickness, points);
///
- /// Draws the provided Points as a closed Linear Polygon with the provided brush at the provided thickness.
+ /// Draws the provided points as a closed linear polygon with the provided brush at the provided thickness.
///
/// The image this method extends.
/// The options.
diff --git a/src/ImageSharp.Drawing/Processing/Extensions/DrawRectangleExtensions.cs b/src/ImageSharp.Drawing/Processing/Extensions/DrawRectangleExtensions.cs
index 36b43415..c6a69975 100644
--- a/src/ImageSharp.Drawing/Processing/Extensions/DrawRectangleExtensions.cs
+++ b/src/ImageSharp.Drawing/Processing/Extensions/DrawRectangleExtensions.cs
@@ -6,7 +6,7 @@
namespace SixLabors.ImageSharp.Drawing.Processing
{
///
- /// Adds extensions that allow the drawing of rectangles to the type.
+ /// Adds extensions that allow the drawing of rectangles.
///
public static class DrawRectangleExtensions
{
diff --git a/src/ImageSharp.Drawing/Processing/Extensions/FillPathCollectionExtensions.cs b/src/ImageSharp.Drawing/Processing/Extensions/FillPathCollectionExtensions.cs
index 7d4a6e89..b01ceea6 100644
--- a/src/ImageSharp.Drawing/Processing/Extensions/FillPathCollectionExtensions.cs
+++ b/src/ImageSharp.Drawing/Processing/Extensions/FillPathCollectionExtensions.cs
@@ -6,7 +6,7 @@
namespace SixLabors.ImageSharp.Drawing.Processing
{
///
- /// Adds extensions that allow the filling of collections of polygon outlines to the type.
+ /// Adds extensions that allow the filling of collections of polygon outlines.
///
public static class FillPathCollectionExtensions
{
diff --git a/src/ImageSharp.Drawing/Processing/Extensions/FillPolygonExtensions.cs b/src/ImageSharp.Drawing/Processing/Extensions/FillPolygonExtensions.cs
index 476134c7..247defa4 100644
--- a/src/ImageSharp.Drawing/Processing/Extensions/FillPolygonExtensions.cs
+++ b/src/ImageSharp.Drawing/Processing/Extensions/FillPolygonExtensions.cs
@@ -6,12 +6,12 @@
namespace SixLabors.ImageSharp.Drawing.Processing
{
///
- /// Adds extensions that allow the filling of closed linear polygons to the type.
+ /// Adds extensions that allow the filling of closed linear polygons.
///
public static class FillPolygonExtensions
{
///
- /// Flood fills the image in the shape of a Linear polygon described by the points
+ /// Flood fills the image in the shape of a linear polygon described by the points
///
/// The image this method extends.
/// The options.
@@ -26,7 +26,7 @@ public static IImageProcessingContext FillPolygon(
source.Fill(options, brush, new Polygon(new LinearLineSegment(points)));
///
- /// Flood fills the image in the shape of a Linear polygon described by the points
+ /// Flood fills the image in the shape of a linear polygon described by the points
///
/// The image this method extends.
/// The brush.
@@ -39,7 +39,7 @@ public static IImageProcessingContext FillPolygon(
source.Fill(brush, new Polygon(new LinearLineSegment(points)));
///
- /// Flood fills the image in the shape of a Linear polygon described by the points
+ /// Flood fills the image in the shape of a linear polygon described by the points
///
/// The image this method extends.
/// The options.
@@ -54,7 +54,7 @@ public static IImageProcessingContext FillPolygon(
source.Fill(options, new SolidBrush(color), new Polygon(new LinearLineSegment(points)));
///
- /// Flood fills the image in the shape of a Linear polygon described by the points
+ /// Flood fills the image in the shape of a linear polygon described by the points
///
/// The image this method extends.
/// The color.
diff --git a/src/ImageSharp.Drawing/Processing/Extensions/FillRectangleExtensions.cs b/src/ImageSharp.Drawing/Processing/Extensions/FillRectangleExtensions.cs
index 9dee47b1..6fbcfe1b 100644
--- a/src/ImageSharp.Drawing/Processing/Extensions/FillRectangleExtensions.cs
+++ b/src/ImageSharp.Drawing/Processing/Extensions/FillRectangleExtensions.cs
@@ -6,7 +6,7 @@
namespace SixLabors.ImageSharp.Drawing.Processing
{
///
- /// Adds extensions that allow the filling of rectangles to the type.
+ /// Adds extensions that allow the filling of rectangles.
///
public static class FillRectangleExtensions
{