diff --git a/src/assemblers.cc b/src/assemblers.cc
index 972c5512491b2e00e34efcdc283bead6def13e46..d3cff5ccdd69bdfe232834e04fa455f7058f417d 100644
--- a/src/assemblers.cc
+++ b/src/assemblers.cc
@@ -90,13 +90,12 @@ assemble_nonlinearity(
           nodalIntegrals, a, mu, eta, normalStress, b, state, L, h);
     }
     case Config::Laursen:
-      return
-          // TODO: take state and h into account
-          // FIXME: We should be using a quadratic rather than a linear function
-          // here!
-          Dune::make_shared<Dune::GlobalLaursenNonlinearity<
-              Dune::LinearFunction, VectorType,
-              MatrixType> const>(mu, normalStress, nodalIntegrals);
+      // TODO: take state and h into account
+      // FIXME: We should be using a quadratic rather than a linear function
+      // here!
+      return Dune::make_shared<Dune::GlobalLaursenNonlinearity<
+          Dune::LinearFunction, VectorType, MatrixType> const>(mu, normalStress,
+                                                               nodalIntegrals);
   }
 }