From f5af7b9513872c9a0529b48c6aa66778c7896128 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Wed, 1 Jun 2022 18:59:31 +0100 Subject: [PATCH] Fix xmldoc wording in Polygon and Polyhedron It's a class now, not a struct --- X10D/src/Drawing/Polygon.cs | 4 ++-- X10D/src/Drawing/Polyhedron.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/X10D/src/Drawing/Polygon.cs b/X10D/src/Drawing/Polygon.cs index 9d4e4b3..c83ac47 100644 --- a/X10D/src/Drawing/Polygon.cs +++ b/X10D/src/Drawing/Polygon.cs @@ -22,7 +22,7 @@ public class Polygon : IEquatable } /// - /// Initializes a new instance of the struct by copying the specified polygon. + /// Initializes a new instance of the class by copying the specified polygon. /// public Polygon(Polygon polygon) : this(polygon._vertices) @@ -30,7 +30,7 @@ public class Polygon : IEquatable } /// - /// Initializes a new instance of the struct by constructing it from the specified vertices. + /// Initializes a new instance of the class by constructing it from the specified vertices. /// /// An enumerable collection of vertices from which the polygon should be constructed. public Polygon(IEnumerable vertices) diff --git a/X10D/src/Drawing/Polyhedron.cs b/X10D/src/Drawing/Polyhedron.cs index 9c2eecc..d7f3b57 100644 --- a/X10D/src/Drawing/Polyhedron.cs +++ b/X10D/src/Drawing/Polyhedron.cs @@ -23,7 +23,7 @@ public class Polyhedron : IEquatable } /// - /// Initializes a new instance of the struct by copying the specified polyhedron. + /// Initializes a new instance of the class by copying the specified polyhedron. /// public Polyhedron(Polyhedron polyhedron) : this(polyhedron._vertices) @@ -31,7 +31,7 @@ public class Polyhedron : IEquatable } /// - /// Initializes a new instance of the struct by constructing it from the specified vertices. + /// Initializes a new instance of the class by constructing it from the specified vertices. /// /// An enumerable collection of vertices from which the polyhedron should be constructed. public Polyhedron(IEnumerable vertices)