diff --git a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/AltoXmlTextExporter.cs b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/AltoXmlTextExporter.cs
index 5a97a463..6e826e77 100644
--- a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/AltoXmlTextExporter.cs
+++ b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/AltoXmlTextExporter.cs
@@ -13,7 +13,6 @@
using UglyToad.PdfPig.Graphics;
using Util;
- ///
///
/// Alto 4.1 (XML) text exporter.
/// See https://github.com/altoxml/schema
@@ -66,7 +65,6 @@
return Serialize(altoDocument);
}
- ///
///
/// Get the Alto (XML) string of the page layout. Excludes s.
///
diff --git a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/SvgTextExporter.cs b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/SvgTextExporter.cs
index 9193ab08..5c36aa83 100644
--- a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/SvgTextExporter.cs
+++ b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/SvgTextExporter.cs
@@ -10,7 +10,6 @@
using Graphics.Colors;
using Graphics.Core;
- ///
///
/// Exports a page as an SVG.
///
diff --git a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/PageSegmenter/DefaultPageSegmenter.cs b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/PageSegmenter/DefaultPageSegmenter.cs
index ce0c0944..7f847c50 100644
--- a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/PageSegmenter/DefaultPageSegmenter.cs
+++ b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/PageSegmenter/DefaultPageSegmenter.cs
@@ -6,7 +6,6 @@
using System.Collections.Generic;
using System.Linq;
- ///
///
/// Default Page Segmenter. All words are included in one block.
///
@@ -17,7 +16,6 @@
///
public static DefaultPageSegmenter Instance { get; } = new DefaultPageSegmenter();
- ///
///
/// Get the blocks using default options values.
///
diff --git a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/PageSegmenter/RecursiveXYCut.cs b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/PageSegmenter/RecursiveXYCut.cs
index c030c663..96601614 100644
--- a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/PageSegmenter/RecursiveXYCut.cs
+++ b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/PageSegmenter/RecursiveXYCut.cs
@@ -7,7 +7,6 @@
using System.Linq;
using UglyToad.PdfPig.Geometry;
- ///
///
/// The recursive X-Y cut is a top-down page segmentation technique that decomposes a document
/// recursively into a set of rectangular blocks. This implementation leverages bounding boxes.
@@ -21,7 +20,6 @@
///
public static RecursiveXYCut Instance { get; } = new RecursiveXYCut();
- ///
///
/// Get the blocks using default options values.
///
@@ -32,7 +30,6 @@
return GetBlocks(words, new RecursiveXYCutOptions());
}
- ///
///
/// Get the blocks using options values.
///