remove unnecessary 'inheritdoc'

This commit is contained in:
BobLd 2020-06-20 14:24:29 +01:00
parent 924c0138e0
commit 4f78e58195
4 changed files with 0 additions and 8 deletions

View File

@ -13,7 +13,6 @@
using UglyToad.PdfPig.Graphics;
using Util;
/// <inheritdoc />
/// <summary>
/// Alto 4.1 (XML) text exporter.
/// <para>See https://github.com/altoxml/schema </para>
@ -66,7 +65,6 @@
return Serialize(altoDocument);
}
/// <inheritdoc />
/// <summary>
/// Get the Alto (XML) string of the page layout. Excludes <see cref="T:UglyToad.PdfPig.Geometry.PdfSubpath" />s.
/// </summary>

View File

@ -10,7 +10,6 @@
using Graphics.Colors;
using Graphics.Core;
/// <inheritdoc />
/// <summary>
/// Exports a page as an SVG.
/// </summary>

View File

@ -6,7 +6,6 @@
using System.Collections.Generic;
using System.Linq;
/// <inheritdoc />
/// <summary>
/// Default Page Segmenter. All words are included in one block.
/// </summary>
@ -17,7 +16,6 @@
/// </summary>
public static DefaultPageSegmenter Instance { get; } = new DefaultPageSegmenter();
/// <inheritdoc />
/// <summary>
/// Get the blocks using default options values.
/// </summary>

View File

@ -7,7 +7,6 @@
using System.Linq;
using UglyToad.PdfPig.Geometry;
/// <inheritdoc />
/// <summary>
/// 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 @@
/// </summary>
public static RecursiveXYCut Instance { get; } = new RecursiveXYCut();
/// <inheritdoc />
/// <summary>
/// Get the blocks using default options values.
/// </summary>
@ -32,7 +30,6 @@
return GetBlocks(words, new RecursiveXYCutOptions());
}
/// <inheritdoc />
/// <summary>
/// Get the blocks using options values.
/// </summary>