diff --git a/doc/handbook/6_parallel.tex b/doc/handbook/6_parallel.tex
index 28b1edc4f1f9363b6376014be39d87b424374d29..83f89df7eef7f5d08fabdbe0c4384ad1e239593a 100644
--- a/doc/handbook/6_parallel.tex
+++ b/doc/handbook/6_parallel.tex
@@ -44,10 +44,10 @@ solver backend include the respective header
 Second, the linear solver must be switched to the AMG backend
 
 \begin{lstlisting}[style=DumuxCode]
-using LinearSolver = Dumux::AMGBackend<TypeTag>;
+using LinearSolver = AMGBiCGSTABBackend<LinearSolverTraits<GridGeometry>>;
 \end{lstlisting}
 
-and the application must be recompiled. The parallel \texttt{Dumux::AMGBackend} instance has to be
+and the application must be recompiled. The parallel \texttt{AMGBiCGSTABBackend} instance has to be
 constructed with a \texttt{Dune::GridView} object and a mapper, in order to construct the
 parallel index set needed for communication.