diff --git a/NumLib/Assembler/SerialExecutor.h b/NumLib/Assembler/SerialExecutor.h
index 05fd443ab2e601a5e6c9b0fc35709e84c6a38a47..dd4b088a0e900b4ed2163befa54b07e5cca0988e 100644
--- a/NumLib/Assembler/SerialExecutor.h
+++ b/NumLib/Assembler/SerialExecutor.h
@@ -62,7 +62,7 @@ struct SerialExecutor
     /// \param object    the object whose method will be called.
     /// \param method    the method being called, i.e., a member function pointer
     ///                  to a member function of the class \c Object.
-    /// \param Args      types of further arguments passed on to the method
+    /// \param args      further arguments passed on to the method
     ///
     /// \see executeDereferenced()
     template <typename Container, typename Object, typename Method, typename... Args>
@@ -83,7 +83,7 @@ struct SerialExecutor
     /// \param container collection of objects having pointer semantics.
     /// \param method    the method being called, i.e., a member function pointer
     ///                  to a member function of the \c container's elements.
-    /// \param Args      types of further arguments passed on to the method
+    /// \param args      further arguments passed on to the method
     ///
     /// \see executeDereferenced()
     template <typename Container, typename Method, typename... Args>