From 347a250c837a78dda90cfa31b9d62c67c7124172 Mon Sep 17 00:00:00 2001
From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de>
Date: Fri, 5 Feb 2016 13:53:26 +0100
Subject: [PATCH] [fix] Fix some more doxygen parameter descriptions

---
 dumux/porousmediumflow/mpnc/implicit/volumevariables.hh | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/dumux/porousmediumflow/mpnc/implicit/volumevariables.hh b/dumux/porousmediumflow/mpnc/implicit/volumevariables.hh
index 705813c7fb..9e16f6b489 100644
--- a/dumux/porousmediumflow/mpnc/implicit/volumevariables.hh
+++ b/dumux/porousmediumflow/mpnc/implicit/volumevariables.hh
@@ -297,6 +297,7 @@ public:
     /*!
      * \brief Return concentration \f$\mathrm{[mol/m^3]}\f$  of a component in the phase.
      *
+     * \param phaseIdx The phase index
      * \param compIdx The index of the component
      */
     Scalar molarity(const int phaseIdx, int compIdx) const
@@ -304,6 +305,8 @@ public:
 
     /*!
      * \brief Return molar density \f$\mathrm{[mol/m^3]}\f$ the of the fluid phase.
+     *
+     * \param phaseIdx The phase index
      */
     Scalar molarDensity(const int phaseIdx) const
     { return fluidState_.molarDensity(phaseIdx);}
@@ -311,12 +314,16 @@ public:
     /*!
      * \brief Return the effective pressure \f$\mathrm{[Pa]}\f$ of a given phase within
      *        the control volume.
+     *
+     * \param phaseIdx The phase index
      */
     Scalar pressure(const int phaseIdx) const
     { return fluidState_.pressure(phaseIdx); }
 
     /*!
      * \brief Return density \f$\mathrm{[kg/m^3]}\f$ the of the fluid phase.
+     *
+     * \param phaseIdx The phase index
      */
     Scalar density(const int phaseIdx) const
     { return fluidState_.density(phaseIdx); }
-- 
GitLab