diff options
author | 2022-01-26 15:06:32 -0800 | |
---|---|---|
committer | 2022-01-26 15:06:32 -0800 | |
commit | d839c70c7342c3b336ddc535a1b4ff909d30a23b (patch) | |
tree | 028496b2169af472a10b5cf2f6cdc6fc7336d387 /Source | |
parent | 16eb75c221ababa903adfc73946221c7f888955d (diff) | |
download | WarpX-d839c70c7342c3b336ddc535a1b4ff909d30a23b.tar.gz WarpX-d839c70c7342c3b336ddc535a1b4ff909d30a23b.tar.zst WarpX-d839c70c7342c3b336ddc535a1b4ff909d30a23b.zip |
Fix Docs of MinAndMaxPositions (#2787)
Fix order of returned tuple (doc string).
Diffstat (limited to 'Source')
-rw-r--r-- | Source/ablastr/particles/ParticleMoments.H | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ablastr/particles/ParticleMoments.H b/Source/ablastr/particles/ParticleMoments.H index defed8e04..e45fb574c 100644 --- a/Source/ablastr/particles/ParticleMoments.H +++ b/Source/ablastr/particles/ParticleMoments.H @@ -25,7 +25,7 @@ namespace particles { * \tparam T_PC a type of amrex::ParticleContainer * * \param pc the particle container to operate on - * \returns x_min, x_max, y_min, y_max, z_min, z_max + * \returns x_min, y_min, z_min, x_max, y_max, z_max */ template< typename T_PC > static |