diff --git a/src/UglyToad.PdfPig/Graphics/IOperationContext.cs b/src/UglyToad.PdfPig/Graphics/IOperationContext.cs
index 70a3929d..8d5fd62f 100644
--- a/src/UglyToad.PdfPig/Graphics/IOperationContext.cs
+++ b/src/UglyToad.PdfPig/Graphics/IOperationContext.cs
@@ -36,7 +36,7 @@
void PopState();
///
- /// Saves a copy of the current graphics state on the stack.
+ /// Saves a copy of the current graphics state on the stack.
///
void PushState();
@@ -62,7 +62,7 @@
/// Start a new sub-path.
///
void BeginSubpath();
-
+
///
/// Close the current subpath.
///
@@ -103,22 +103,12 @@
/// Add a bezier curve to the current subpath.
/// Should implement matrix transformations.
///
- ///
- ///
- ///
- ///
- ///
- ///
void BezierCurveTo(double x1, double y1, double x2, double y2, double x3, double y3);
///
/// Add a bezier curve to the current subpath.
/// Should implement matrix transformations.
///
- ///
- ///
- ///
- ///
void BezierCurveTo(double x2, double y2, double x3, double y3);
///