From: Rene Gassmoeller Date: Wed, 25 Nov 2020 22:38:57 +0000 (-0500) Subject: Fix some typos X-Git-Tag: v9.3.0-rc1~850^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1bf65528280ece2607e60ca681f830e530c6cba;p=dealii.git Fix some typos --- diff --git a/include/deal.II/particles/particle_handler.h b/include/deal.II/particles/particle_handler.h index 2b71c2a2b0..3d459a5614 100644 --- a/include/deal.II/particles/particle_handler.h +++ b/include/deal.II/particles/particle_handler.h @@ -712,7 +712,7 @@ namespace Particles * Update all particles that live in cells that are ghost cells to * other processes. In this context, update means to update the * location and the properties of the ghost particles assuming that - * the ghost particles have not changed cells. Consquently, this will + * the ghost particles have not changed cells. Consequently, this will * not update the reference location of the particles. */ void @@ -923,7 +923,7 @@ namespace Particles * * @param [in] enable_cache Optional bool that enables updating * the ghost particles without rebuilding them from scratch by - * building a cache of type GhostParticlePartitioner which + * building a cache of type GhostParticlePartitioner, which * stores the necessary information to update the ghost particles. * Once this cache is built, the ghost particles can be updated * by a call to send_recv_particles_properties_and_location(). @@ -950,15 +950,15 @@ namespace Particles * GhostParticlePartitioner as a caching structure to update the particles. * It inherently assumes that particles cannot have changed cell. * All updated particles will be appended to the - * @p received_particles vector. + * @p received_particles container. * * @param [in] particles_to_send All particles for which information * should be sent and their new subdomain_ids are in this map. * * @param [in,out] received_particles A map with all received - * particles. Note that it is not required nor checked that the list - * is empty, received particles are simply attached to the end of - * the vector. + * particles. Note that it is not required nor checked that the container + * is empty, received particles are simply inserted into + * the map. * */ void diff --git a/include/deal.II/particles/partitioner.h b/include/deal.II/particles/partitioner.h index 7de4345bb4..46ee1def56 100644 --- a/include/deal.II/particles/partitioner.h +++ b/include/deal.II/particles/partitioner.h @@ -34,8 +34,8 @@ namespace Particles * This structure should only be used when one wishes to carry out work * using the particles without calling * sort_particles_into_subdomain_and_cells at every iteration. This is - * useful when particle-particle interaction occur at a different time - * scale than particle-FEM interaction. + * useful when particle-particle interaction occurs at a different time + * scale than particle-mesh interaction. */ template struct GhostParticlePartitioner @@ -78,7 +78,7 @@ namespace Particles * Vector of size (neighbors.size()+1) used to store the start and the * end point of the data that must be received from neighbor[i] on * the current subdomain. For neighbor i, recv_pointers[i] indicate the - * beggining and reicv_pointers[i+1] indicates the end of the data that + * beginning and recv_pointers[i+1] indicates the end of the data that * must be received. * * This structure is similar to