diff --git a/dumux/decoupled/2p/diffusion/mimetic/mimeticpressure2p.hh b/dumux/decoupled/2p/diffusion/mimetic/mimeticpressure2p.hh
index b35421f34ef1d33b74977e7214648e0905c16b2c..e40caf978013a44a910ee6667dd473704517cf89 100644
--- a/dumux/decoupled/2p/diffusion/mimetic/mimeticpressure2p.hh
+++ b/dumux/decoupled/2p/diffusion/mimetic/mimeticpressure2p.hh
@@ -113,7 +113,10 @@ template<class TypeTag> class MimeticPressure2P
     typedef Dune::BlockVector< Dune::FieldVector<Scalar, 1> > TraceType;
     typedef Dune::BlockVector< Dune::FieldVector<Scalar, 2*dim> > NormalVelType;
     typedef MimeticOperatorAssembler<Scalar,GridView> OperatorAssembler;
+
+    ///@cond 0
     typedef typename GET_PROP(TypeTag, SolutionTypes)::ScalarSolution ScalarSolution;
+    ///@endcond
 
     typedef typename GET_PROP_TYPE(TypeTag, PressureCoefficientMatrix) Matrix;
     typedef typename GET_PROP_TYPE(TypeTag, PressureRHSVector) Vector;
diff --git a/dumux/decoupled/2p2c/fvpressurecompositional.hh b/dumux/decoupled/2p2c/fvpressurecompositional.hh
index 883dee7680116fba1970bfa2925fc1b7ad35f714..5de615b74c7d4088fcd766101dfb812cf4255d68 100644
--- a/dumux/decoupled/2p2c/fvpressurecompositional.hh
+++ b/dumux/decoupled/2p2c/fvpressurecompositional.hh
@@ -75,7 +75,9 @@ template<class TypeTag> class FVPressureCompositional
 
     typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
     typedef typename GET_PROP_TYPE(TypeTag, FluidState) FluidState;
+    ///@cond 0
     typedef typename GET_PROP_TYPE(TypeTag, SpatialParameters)::MaterialLaw MaterialLaw;
+    ///@endcond
 
     typedef typename GET_PROP_TYPE(TypeTag, CellData) CellData;
     enum
diff --git a/dumux/decoupled/common/fv/fvpressure.hh b/dumux/decoupled/common/fv/fvpressure.hh
index b76dfb69f3d85d5d6cf320b03bcb53b87ee7aa97..94c96a77db93d336180dea730a86eedc5bffa68d 100644
--- a/dumux/decoupled/common/fv/fvpressure.hh
+++ b/dumux/decoupled/common/fv/fvpressure.hh
@@ -53,9 +53,9 @@ template<class TypeTag> class FVPressure
     typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView;
     typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
     typedef typename GET_PROP_TYPE(TypeTag, Problem) Problem;
-
+    ///@cond 0
     typedef typename GET_PROP(TypeTag, SolutionTypes)::ScalarSolution ScalarSolution;
-
+    ///@endcond
     typedef typename GET_PROP_TYPE(TypeTag, CellData) CellData;
     enum
     {
diff --git a/dumux/decoupled/common/gridadapt.hh b/dumux/decoupled/common/gridadapt.hh
index cad9aed8ae6d9b39906be9706147b2c7bb7f85e4..3bcc2645ed040d7cb19fc5c0db28ff45334ddf4c 100644
--- a/dumux/decoupled/common/gridadapt.hh
+++ b/dumux/decoupled/common/gridadapt.hh
@@ -63,8 +63,6 @@ public:
     /*!
      * Constructor for h-adaptive simulations (adaptive grids)
      * @param problem The problem
-     * @param levelMin minimum refinement level
-     * @param levelMax maximum refinement level
      */
     GridAdapt (Problem& problem)
     : problem_(problem), adaptionIndicator_(problem)
@@ -145,9 +143,6 @@ public:
 
     /*!
      * Mark Elements for grid refinement according to applied Indicator
-     * @param indicator Vector where the refinement indicator is stored
-     * @param refineThreshold lower threshold where to refine
-     * @param coarsenThreshold upper threshold where to coarsen
      * @return Total ammount of marked cells
      */
     int markElements()
diff --git a/dumux/decoupled/common/variableclass.hh b/dumux/decoupled/common/variableclass.hh
index c039f6fa141aa358f82b7f8211ef9d709ffa8958..aee741f225d5645e8087a0c285e9b81ff0181a86 100644
--- a/dumux/decoupled/common/variableclass.hh
+++ b/dumux/decoupled/common/variableclass.hh
@@ -84,8 +84,6 @@ public:
     //! Constructs a VariableClass object
     /**
      *  @param gridView a DUNE gridview object corresponding to diffusion and transport equation
-     *  @param codim codimension of the entity of which data has to be strored
-     *  @param initialVel initial value for the velocity (only necessary if only transport part is solved)
      */
     VariableClass(const GridView& gridView) :
         gridView_(gridView), elementMapper_(gridView), vertexMapper_(gridView)
diff --git a/test/decoupled/1p/test_diffusion_spatialparams.hh b/test/decoupled/1p/test_diffusion_spatialparams.hh
index 2213577d08cb1ab4d3a56a16d380220f5b36db62..945bfbc101f9d8dc41c6c0061027849bd87b80f3 100644
--- a/test/decoupled/1p/test_diffusion_spatialparams.hh
+++ b/test/decoupled/1p/test_diffusion_spatialparams.hh
@@ -70,8 +70,9 @@ class TestDiffusionSpatialParams: public FVSpatialParameters<TypeTag>
     typedef typename GridView::IndexSet IndexSet;
     typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
     typedef typename Grid::ctype CoordScalar;
+    ///@cond 0
     typedef typename GET_PROP(TypeTag, SolutionTypes)::ScalarSolution ScalarSolution;
-
+    ///@endcond
     enum
         {dim=Grid::dimension, dimWorld=Grid::dimensionworld, numEq=1};
     typedef typename Grid::Traits::template Codim<0>::Entity Element;