diff --git a/include/curves/bezier_polynom_conversion.h b/include/curves/bezier_polynom_conversion.h
index 6829f98d0846be4359807dd6562b25f1b79bddf4..47b83c6ea8726a622babae428a1b1904ca105cc5 100644
--- a/include/curves/bezier_polynom_conversion.h
+++ b/include/curves/bezier_polynom_conversion.h
@@ -50,9 +50,9 @@ Polynom from_bezier(const Bezier& curve)
     return Polynom(coefficients,curve.min(),curve.max());
 }
 
-///\brief Converts a polynom to a Bezier curve
-///\param polynom: the polynom to be converted from
-///\return the equivalent Bezier curve
+///\brief Converts a polynom to a Bezier curve.
+///\param polynom: the polynom to convert.
+///\return The equivalent Bezier curve.
 /*template<typename Bezier, typename Polynom>
 Bezier from_polynom(const Polynom& polynom)
 {
diff --git a/include/curves/curve_abc.h b/include/curves/curve_abc.h
index a943eb8911214e942ecebaef070dabb54d653932..55d45a5dac0daabe2164b32c64eb011e37d72cc7 100644
--- a/include/curves/curve_abc.h
+++ b/include/curves/curve_abc.h
@@ -18,9 +18,9 @@
 
 namespace curves
 {
-/// \struct curve_abc
-/// \brief Represents a curve of dimension Dim
-/// is Safe is false, no verification is made on the evaluation of the curve.
+/// \struct curve_abc.
+/// \brief Represents a curve of dimension Dim.
+/// If parameter Safe is false, no verification is made on the evaluation of the curve.
 template<typename Time= double, typename Numeric=Time, std::size_t Dim=3, bool Safe=false
 , typename Point= Eigen::Matrix<Numeric, Dim, 1> >
 struct  curve_abc : std::unary_function<Time, Point>
@@ -30,25 +30,25 @@ struct  curve_abc : std::unary_function<Time, Point>
 
 /* Constructors - destructors */
 	public:
-	///\brief Constructor
+	/// \brief Constructor.
     curve_abc(){}
 
-	///\brief Destructor
+	/// \brief Destructor.
     virtual ~curve_abc(){}
 /* Constructors - destructors */
 
 /*Operations*/
 	public:
 	///  \brief Evaluation of the cubic spline at time t.
-	///  \param t : the time when to evaluate the spine
-	///  \param return : the value x(t)
+	///  \param t : time when to evaluate the spine
+	///  \return Point corresponding on curve at time t.
     virtual point_t operator()(const time_t t) const = 0;
 
 
     ///  \brief Evaluation of the derivative spline at time t.
-    ///  \param t : the time when to evaluate the spline
-    ///  \param order : order of the derivative
-    ///  \param return : the value x(t)
+    ///  \param t : time when to evaluate the spline.
+    ///  \param order : order of the derivative.
+    ///  \return Point corresponding on curve at time t.
     virtual point_t derivate(const time_t t, const std::size_t order) const = 0;
 /*Operations*/