diff --git a/src/TNL/Algorithms/StaticFor.h b/src/TNL/Algorithms/StaticFor.h
index e9bcb43e2c6f682c8e2667ef5a0ef043d86f3a05..6a450638f49ed22bd899af2397df602d98ff74a3 100644
--- a/src/TNL/Algorithms/StaticFor.h
+++ b/src/TNL/Algorithms/StaticFor.h
@@ -15,7 +15,7 @@
 namespace TNL {
 namespace Algorithms {
 
-/***
+/**
  * \brief StaticFor is a wrapper for common for-loop with explicit unrolling.
  *
  * StaticFor can be used only for for-loops bounds of which are known at the
@@ -48,8 +48,8 @@ struct StaticFor< Begin, End, true >
    /**
     * \brief Static method for execution od the StaticFor.
     *
-    * @param f is a (lambda) function to be performed in each iteration.
-    * @param args are auxiliary data to be passed to the function f.
+    * \param f is a (lambda) function to be performed in each iteration.
+    * \param args are auxiliary data to be passed to the function f.
     */
    template< typename Function, typename... Args >
    __cuda_callable__