From 0d0bcf4ce3e36ca0a5737c9d191ebb594eef6654 Mon Sep 17 00:00:00 2001
From: Jesse Mapel <jmapel@usgs.gov>
Date: Tue, 17 Aug 2021 10:43:36 -0700
Subject: [PATCH] Fixed enum docs

Going to 2 slashes instead of 3 broke doxygen docs for enums. This reverts back to 3 slashes to fix it.
---
 include/ale/InterpUtils.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/include/ale/InterpUtils.h b/include/ale/InterpUtils.h
index 6251746..b666ccc 100644
--- a/include/ale/InterpUtils.h
+++ b/include/ale/InterpUtils.h
@@ -7,21 +7,21 @@
 
 namespace ale {
 
-  // Interpolation enum for defining different methods of interpolating rotations
+  /// Interpolation enum for defining different methods of interpolating rotations
   enum RotationInterpolation {
-    // Spherical linear interpolation
+    /// Spherical linear interpolation
     SLERP,
-    // Normalized linear interpolation
+    /// Normalized linear interpolation
     NLERP
   };
 
-  // Interpolation enum for defining different methods of interpolating in R
+  /// Interpolation enum for defining different methods of interpolating in R
   enum PositionInterpolation {
-    // Interpolate using linear interpolation
+    /// Interpolate using linear interpolation
     LINEAR = 0,
-    // Interpolate using a cubic spline
+    /// Interpolate using a cubic spline
     SPLINE = 1,
-    // Interpolate using Lagrange polynomials up to 8th order
+    /// Interpolate using Lagrange polynomials up to 8th order
     LAGRANGE = 2,
   };
 
-- 
GitLab