Skip to content

Commit 4c3a3ef

Browse files
Fix comments
1 parent 24537b1 commit 4c3a3ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ImageSharp.Drawing/Shapes/Path.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class Path : IPath, ISimplePath, IPathInternals, IInternalPathOwner
2020
/// <summary>
2121
/// Initializes a new instance of the <see cref="Path"/> class.
2222
/// </summary>
23-
/// <param name="points">The collection of points.</param>
23+
/// <param name="points">The collection of points; processed as a series of linear line segments.</param>
2424
public Path(PointF[] points)
2525
: this(new LinearLineSegment(points))
2626
{

src/ImageSharp.Drawing/Shapes/Polygon.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Polygon : Path
1414
/// <summary>
1515
/// Initializes a new instance of the <see cref="Polygon"/> class.
1616
/// </summary>
17-
/// <param name="points">The collection of points.</param>
17+
/// <param name="points">The collection of points; processed as a series of linear line segments.</param>
1818
public Polygon(PointF[] points)
1919
: this(new LinearLineSegment(points))
2020
{

0 commit comments

Comments
 (0)