From 4915e401690e1ad48b8274adeafc913a75022413 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 23 Oct 2021 12:31:08 -0400 Subject: [PATCH] Fix a typo. --- include/deal.II/numerics/vector_tools_evaluate.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/numerics/vector_tools_evaluate.h b/include/deal.II/numerics/vector_tools_evaluate.h index 90cd3c0c81..04d6bb3ad9 100644 --- a/include/deal.II/numerics/vector_tools_evaluate.h +++ b/include/deal.II/numerics/vector_tools_evaluate.h @@ -80,11 +80,11 @@ namespace VectorTools * // first usage: set up cache * Utilities::MPI::RemotePointEvaluation cache; * - * const auto result_1 = VectorToos::point_values( + * const auto result_1 = VectorTools::point_values( * mapping, dof_handler_1, vector_1, evaluation_points, cache); * * // further usages: reuse the cache - * const auto result_2 = VectorToos::point_values( + * const auto result_2 = VectorTools::point_values( * cache, dof_handler_2, vector_2); * @endcode * @@ -101,10 +101,10 @@ namespace VectorTools * cache.reinit(evaluation_points, triangulation, mapping); * * // use the cache - * const auto result_1 = VectorToos::point_values( + * const auto result_1 = VectorTools::point_values( * cache, dof_handler_1, vector_1); * - * const auto result_2 = VectorToos::point_values( + * const auto result_2 = VectorTools::point_values( * cache, dof_handler_2, vector_2); * @endcode * -- 2.39.5