diff --git a/dumux/material/fluidsystems/h2on2fluidsystem.hh b/dumux/material/fluidsystems/h2on2fluidsystem.hh
index 5c73ac77b263157e475971144921736e22dad908..f5c784d578a82eb014bba8ec67612764485559ec 100644
--- a/dumux/material/fluidsystems/h2on2fluidsystem.hh
+++ b/dumux/material/fluidsystems/h2on2fluidsystem.hh
@@ -284,6 +284,12 @@ public:
     /*!
      * \brief Calculate the density [kg/m^3] of a fluid phase
      *
+     * If useComplexRelations == true, we apply
+     * Formula (2.6) from S.O.Ochs:
+     * "Development of a multiphase multicomponent
+     * model for PEMFC - Technical report: IRTG-NUPUS",
+     * University of Stuttgart, 2008
+     *
      * \param fluidState An abitrary fluid state
      * \param phaseIdx The index of the fluid phase to consider
      */
@@ -308,7 +314,6 @@ public:
             else
             {
                 // See: Ochs 2008
-                // \todo: proper citation
                 Scalar rholH2O = H2O::liquidDensity(T, p);
                 Scalar clH2O = rholH2O/H2O::molarMass();