Skip to content

Commit 9b006e6

Browse files
committed
PunctureTracker: fix typo in comments
1 parent da493ba commit 9b006e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PunctureTracker/src/puncture_tracker.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ extern "C" void PunctureTracker_Setup(CCTK_ARGUMENTS) {
8383
if (track_boxes) {
8484
const std::array<std::vector<CCTK_REAL>, Loop::dim> &location =
8585
g_punctures->getLocation();
86-
for (int n = 0; n < 3; ++n) { // since BoxInBox hard codes position[3]
86+
for (int n = 0; n < 3; ++n) { // BoxInBox currently hardcodes position[3]
8787
if (n < nPunctures) {
8888
CCTK_VINFO("Writing punc coords to box %d.", n);
8989
position_x[n] = location[0][n];
@@ -193,7 +193,7 @@ extern "C" void PunctureTracker_Track(CCTK_ARGUMENTS) {
193193
}
194194

195195
if (track_boxes) {
196-
for (int i = 0; i < 3; ++i) { // since BoxInBox hard codes position[3]
196+
for (int i = 0; i < 3; ++i) { // BoxInBox currently hardcodes position[3]
197197
if (i < nPunctures) {
198198
position_x[i] = location[0][i];
199199
position_y[i] = location[1][i];

0 commit comments

Comments
 (0)