diff --git a/dumux/io/container.hh b/dumux/io/container.hh
index 5f81750cd6caa4996423c5d74348dc1bb0875298..5e5f495abd0e7e7b1cda1f7450b65c20f917c328 100644
--- a/dumux/io/container.hh
+++ b/dumux/io/container.hh
@@ -36,7 +36,7 @@ namespace Dumux {
  * \param v The container, requires being() and end() method
  * \param filename The filename to write to
  *
- * \usage std::vector<double>(5, 0.0) v; writeContainerToFile(v, "myvector.txt");
+ * usage: std::vector<double>(5, 0.0) v; writeContainerToFile(v, "myvector.txt");
  */
 template<typename Container>
 void writeContainerToFile(const Container& v,
@@ -52,7 +52,7 @@ void writeContainerToFile(const Container& v,
  * \param filename The filename to write to
  * \tparam Container  The container type, requires being(), end(), push_back() method
  *
- * \usage auto v = readFileToContainer<std::vector<double>>("myvector.txt");
+ * usage: auto v = readFileToContainer<std::vector<double>>("myvector.txt");
  */
 template<typename Container>
 Container readFileToContainer(const std::string& filename)
diff --git a/test/material/fluidmatrixinteractions/effectivediffusivityconstantproblem.hh b/test/material/fluidmatrixinteractions/effectivediffusivityconstantproblem.hh
index d08b43e34a6814400637383bf961b8a9d1813def..eb4b563fbd44902ec202226edbd78493cdca5d3b 100644
--- a/test/material/fluidmatrixinteractions/effectivediffusivityconstantproblem.hh
+++ b/test/material/fluidmatrixinteractions/effectivediffusivityconstantproblem.hh
@@ -191,7 +191,13 @@ public:
     }
 
 
-    //! \copydoc InjectionProblem::initialPhasePresence()
+    /*!
+    * \brief Returns the initial phase state for a control volume.
+    *
+    * \param vertex The vertex
+    * \param vIdxGlobal The global index of the vertex
+    * \param globalPos The position of the center of the element
+    */
     int initialPhasePresence(const Vertex &vertex,
                              int &vIdxGlobal,
                              const GlobalPosition &globalPos) const
diff --git a/test/material/fluidmatrixinteractions/effectivediffusivityconstanttauproblem.hh b/test/material/fluidmatrixinteractions/effectivediffusivityconstanttauproblem.hh
index b0fccd9a908a3d157922d80ccc5303acfce581ad..5b1a9b00b008bae277a6eded85a2335052565271 100644
--- a/test/material/fluidmatrixinteractions/effectivediffusivityconstanttauproblem.hh
+++ b/test/material/fluidmatrixinteractions/effectivediffusivityconstanttauproblem.hh
@@ -191,7 +191,13 @@ public:
     }
 
 
-    //! \copydoc InjectionProblem::initialPhasePresence()
+    /*!
+    * \brief Returns the initial phase state for a control volume.
+    *
+    * \param vertex The vertex
+    * \param vIdxGlobal The global index of the vertex
+    * \param globalPos The position of the center of the element
+    */
     int initialPhasePresence(const Vertex &vertex,
                              int &vIdxGlobal,
                              const GlobalPosition &globalPos) const
diff --git a/test/material/fluidmatrixinteractions/effectivediffusivitymillingtonquirkproblem.hh b/test/material/fluidmatrixinteractions/effectivediffusivitymillingtonquirkproblem.hh
index 089f0481c5f0256e62a97b2209c547bc73c226a9..421e3dfa344ed7c437c10377e5836386c4895789 100644
--- a/test/material/fluidmatrixinteractions/effectivediffusivitymillingtonquirkproblem.hh
+++ b/test/material/fluidmatrixinteractions/effectivediffusivitymillingtonquirkproblem.hh
@@ -191,7 +191,13 @@ public:
     }
 
 
-    //! \copydoc InjectionProblem::initialPhasePresence()
+    /*!
+    * \brief Returns the initial phase state for a control volume.
+    *
+    * \param vertex The vertex
+    * \param vIdxGlobal The global index of the vertex
+    * \param globalPos The position of the center of the element
+    */
     int initialPhasePresence(const Vertex &vertex,
                              int &vIdxGlobal,
                              const GlobalPosition &globalPos) const