From d31435751dde3a701426bede5cbffcb42f91e495 Mon Sep 17 00:00:00 2001 From: William Moorehouse Date: Thu, 11 Jun 2015 23:34:41 -0400 Subject: [PATCH] Changed comment delimiter --- TrueCraft.API/BoundingBox.cs | 2 +- TrueCraft.API/Ray.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TrueCraft.API/BoundingBox.cs b/TrueCraft.API/BoundingBox.cs index e799e86..e4868d3 100644 --- a/TrueCraft.API/BoundingBox.cs +++ b/TrueCraft.API/BoundingBox.cs @@ -29,7 +29,7 @@ namespace TrueCraft.API /// /// Represents an axis-aligned bounding box. /// - /// Mostly taken from the MonoXna project, which is licensed under the MIT license + // Mostly taken from the MonoXna project, which is licensed under the MIT license public struct BoundingBox : IEquatable { #region Public Fields diff --git a/TrueCraft.API/Ray.cs b/TrueCraft.API/Ray.cs index 4e2534a..dbd3e57 100644 --- a/TrueCraft.API/Ray.cs +++ b/TrueCraft.API/Ray.cs @@ -8,7 +8,7 @@ namespace TrueCraft.API /// /// Represents a ray; a line with a start and direction, but no end. /// - /// Mostly taken from the MonoXna project, which is licensed under the MIT license + // Mostly taken from the MonoXna project, which is licensed under the MIT license public struct Ray : IEquatable { #region Public Fields