From 5e5c9e61776f6f1fb6152ba2748cc6eff30c32bb Mon Sep 17 00:00:00 2001 From: Nick Lockwood Date: Fri, 22 Dec 2023 18:21:28 +0000 Subject: [PATCH] WIP --- Sources/Edge.swift | 4 ++-- Tests/PolygonTests.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/Edge.swift b/Sources/Edge.swift index 180df9f8..caad47c4 100644 --- a/Sources/Edge.swift +++ b/Sources/Edge.swift @@ -31,9 +31,9 @@ /// A polygon edge. public struct Edge: Hashable, Sendable { - // The starting point of the line segment. + /// The starting point of the line segment. public let start: Vertex - // The end point of the line segment. + /// The end point of the line segment. public let end: Vertex /// Creates an edge with a start and end vertex. diff --git a/Tests/PolygonTests.swift b/Tests/PolygonTests.swift index a4ec57ca..512a537b 100644 --- a/Tests/PolygonTests.swift +++ b/Tests/PolygonTests.swift @@ -10,7 +10,7 @@ import XCTest extension Euclid.Polygon: ExpressibleByArrayLiteral { - // Convenience constructor for testing + /// Convenience constructor for testing init(unchecked vertices: [Vertex], plane: Plane? = nil) { self.init( unchecked: vertices,