diff --git a/src/UglyToad.PdfPig.Core/PdfSubpath.cs b/src/UglyToad.PdfPig.Core/PdfSubpath.cs
index 84669f4b..2c3d37b2 100644
--- a/src/UglyToad.PdfPig.Core/PdfSubpath.cs
+++ b/src/UglyToad.PdfPig.Core/PdfSubpath.cs
@@ -6,14 +6,14 @@
using System.Text;
///
- ///
+ /// A supbpath is made up of a sequence of connected segments.
///
public class PdfSubpath
{
private readonly List commands = new List();
///
- /// The sequence of sub-paths which form this .
+ /// The sequence of commands which form this .
///
public IReadOnlyList Commands => commands;
diff --git a/src/UglyToad.PdfPig/Graphics/ContentStreamProcessor.cs b/src/UglyToad.PdfPig/Graphics/ContentStreamProcessor.cs
index 391d8413..e653ee11 100644
--- a/src/UglyToad.PdfPig/Graphics/ContentStreamProcessor.cs
+++ b/src/UglyToad.PdfPig/Graphics/ContentStreamProcessor.cs
@@ -499,10 +499,6 @@
ClosePath();
}
- ///
- /// End the path object without filling or stroking it. This operator shall be a path-painting no-op,
- /// used primarily for the side effect of changing the current clipping path (see 8.5.4, "Clipping Path Operators").
- ///
public void EndPath()
{
AddCurrentSubpath();