Skip to content

Commit 8481a30

Browse files
Fix XML docs
1 parent a043faa commit 8481a30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/PolygonClipper/Contour.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public Vertex this[int index]
8080
/// Gets the segment at the specified index of the contour.
8181
/// </summary>
8282
/// <param name="index">The index of the segment.</param>
83-
/// <returns>The <see cref="GetSegment"/>.</returns>
83+
/// <returns>The <see cref="Segment"/>.</returns>
8484
internal Segment GetSegment(int index)
8585
=> (index == this.Count - 1)
8686
? new Segment(this.vertices[^1], this.vertices[0])

src/PolygonClipper/SweepEvent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public bool IsBefore(SweepEvent other)
199199
/// <summary>
200200
/// Returns the segment associated with the sweep event.
201201
/// </summary>
202-
/// <returns>The <see cref="GetSegment"/>.</returns>
202+
/// <returns>The <see cref="Segment"/>.</returns>
203203
[MethodImpl(MethodImplOptions.AggressiveInlining)]
204204
public Segment GetSegment() => new(this.Point, this.OtherEvent.Point);
205205
}

0 commit comments

Comments
 (0)