From: David Wells Date: Sat, 23 Oct 2021 16:31:08 +0000 (-0400) Subject: Fix a typo. X-Git-Tag: v9.4.0-rc1~901^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4915e401690e1ad48b8274adeafc913a75022413;p=dealii.git Fix a typo. --- 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 *