Skip to content

Commit

Permalink
Merge pull request #12872 from drwells/fix-doc-typos-10
Browse files Browse the repository at this point in the history
Fix a typo.
  • Loading branch information
peterrum committed Oct 23, 2021
2 parents c5e6310 + 4915e40 commit 042bffe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/deal.II/numerics/vector_tools_evaluate.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ namespace VectorTools
* // first usage: set up cache
* Utilities::MPI::RemotePointEvaluation<dim, spacedim> 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
*
Expand All @@ -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
*
Expand Down

0 comments on commit 042bffe

Please sign in to comment.