Commit 8c75798baccd05dc4e62aa75e5b99d44e6c61c0c

henry 2002-12-15T23:04:46

Updated comments

diff --git a/include/FTContour.h b/include/FTContour.h
index b47e984..f27352f 100644
--- a/include/FTContour.h
+++ b/include/FTContour.h
@@ -67,11 +67,14 @@ class FTGL_EXPORT FTContour
         
         /**
          * De Casteljau (bezier) algorithm contributed by Jed Soane
-         *
-         * @param curveOrder The order of the curve to be evaluated.
-         * <code>2</code> equals conic (quadratic) and <code>3</code> equals cubic
+         * Evaluates a quadratic or conic (second degree) curve
          */
         void evaluateQuadraticCurve();
+
+        /**
+         * De Casteljau (bezier) algorithm contributed by Jed Soane
+         * Evaluates a cubic (third degree) curve
+         */
         void evaluateCubicCurve();
 
         /**