Skip to content

Commit 1d307c2

Browse files
authored
Fix FillPatch documentation regarding ghost cells (#4519)
Thank @Afraid31 for pointing this out. (#4518)
1 parent a21af25 commit 1d307c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Src/AmrCore/AMReX_FillPatchUtil.H

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ namespace amrex
9696
* The destination MultiFab/FabArray is on the same AMR level as the
9797
* source MultiFab/FabArray. Usually this can only be used on AMR level
9898
* 0, because filling fine level MF usually requires coarse level
99-
* data. If needed, interpolation in time is performed. Ghost cells of
100-
* the destination MF are not filled.
99+
* data. If needed, interpolation in time is performed. All ghost cells of
100+
* the destination MF are filled.
101101
*
102102
* \tparam MF the MultiFab/FabArray type
103103
* \tparam BC functor for filling physical boundaries
@@ -183,7 +183,7 @@ namespace amrex
183183
* level data as much as possible. This may include interpolation in
184184
* time. For the rest of the destination MF, we fill them with the
185185
* coarse level data using interpolation in space (and in time if
186-
* needed). Ghost cells of the destination MF are not filled.
186+
* needed). All ghost cells of the destination MF are filled.
187187
*
188188
* \tparam MF the MultiFab/FabArray type
189189
* \tparam BC functor for filling physical boundaries
@@ -356,7 +356,7 @@ namespace amrex
356356
* level data as much as possible. This may include interpolation in
357357
* time. For the rest of the destination MFs, we fill them with the
358358
* coarse level data using interpolation in space (and in time if
359-
* needed). Ghost cells of the destination MFs are not filled.
359+
* needed). All ghost cells of the destination MFs are filled.
360360
*
361361
* \tparam MF the MultiFab/FabArray type
362362
* \tparam BC functor for filling physical boundaries
@@ -466,7 +466,7 @@ namespace amrex
466466
* level data as much as possible. This may include interpolation in
467467
* time. For the rest of the destination MF, we fill them with the
468468
* coarse level data using interpolation in space (and in time if
469-
* needed). Ghost cells of the destination MF are not filled.
469+
* needed). All ghost cells of the destination MF are filled.
470470
*
471471
* \tparam MF the MultiFab/FabArray type
472472
* \tparam BC functor for filling physical boundaries

0 commit comments

Comments
 (0)