diff --git a/src/const.h b/src/const.h
index d9e4e09d2081361778df329660db3b6ad8f2e204..6710fe9e52dfdbede468282d84d4441b923a59fe 100644
--- a/src/const.h
+++ b/src/const.h
@@ -37,8 +37,8 @@
 #define const_max_u_change 0.1f
 
 /* Dimensionality of the problem */
-//#define HYDRO_DIMENSION_3D
-#define HYDRO_DIMENSION_2D
+#define HYDRO_DIMENSION_3D
+//#define HYDRO_DIMENSION_2D
 //#define HYDRO_DIMENSION_1D
 
 /* Hydrodynamical adiabatic index. */
diff --git a/src/equation_of_state.h b/src/equation_of_state.h
index d9f1a46f240a8bdf965749a5513ca3448d08aeb9..b4a36e8a3ef0bcc281d1f939f89fde08ecf00be9 100644
--- a/src/equation_of_state.h
+++ b/src/equation_of_state.h
@@ -19,6 +19,13 @@
 #ifndef SWIFT_EQUATION_OF_STATE_H
 #define SWIFT_EQUATION_OF_STATE_H
 
+/**
+ * @file equation_of_state.h
+ * @brief Defines the equation of state of the gas we simulate in the form of
+ * relations between thermodynamic quantities. These are later used internally
+ * by all hydro schemes
+ */
+
 /* Config parameters. */
 #include "../config.h"
 
diff --git a/tests/test125cells.c b/tests/test125cells.c
index d698f9ce00856945e229b8b508bbca34e368eb12..304b26ec94419bffdd04be3fc0361213d8b5a785 100644
--- a/tests/test125cells.c
+++ b/tests/test125cells.c
@@ -465,7 +465,7 @@ int main(int argc, char *argv[]) {
   message("test125cells only useful in 3D. Change parameters in const.h !");
   return 1;
 #endif
-  
+
   /* Build the infrastructure */
   struct space space;
   space.periodic = 0;