* soltrans.interpolate(interpolated_solution);
* @endcode
*
- * Different from PETSc and Trilinos vectors,
- * LinearAlgebra::distributed::Vector allows writing into ghost elements.
- * For a ghosted vector the interpolation step can be accomplished via
- * @code
- * interpolated_solution.zero_out_ghosts();
- * soltrans.interpolate(interpolated_solution);
- * interpolated_solution.update_ghost_values();
- * @endcode
- *
* As the grid is distributed, it is important to note that the old
* solution(s) must be copied to one that also provides access to the
* locally relevant DoF values (these values required for the interpolation
* soltrans.interpolate(solution);
* @endcode
*
+ * Different from PETSc and Trilinos vectors,
+ * LinearAlgebra::distributed::Vector allows writing into ghost elements.
+ * For a ghosted vector the interpolation step can be accomplished via
+ * @code
+ * interpolated_solution.zero_out_ghosts();
+ * soltrans.interpolate(interpolated_solution);
+ * interpolated_solution.update_ghost_values();
+ * @endcode
+ *
* <h3>Use for Serialization</h3>
*
* This class can be used to serialize and later deserialize a distributed