Skip to content

Commit bf75bb4

Browse files
committed
.
1 parent b39a239 commit bf75bb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

minmax.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1976,7 +1976,7 @@ void op_min_with_apply
19761976
if (adjEnd >= chromSpec->length) adjEnd = chromSpec->length;
19771977
}
19781978

1979-
// add over this interval
1979+
// minimize over this interval
19801980

19811981
for (ix=adjStart ; ix<adjEnd ; ix++)
19821982
{ if (val < v[ix]) v[ix] = val; }
@@ -2262,7 +2262,7 @@ void op_max_with_apply
22622262
if (adjEnd >= chromSpec->length) adjEnd = chromSpec->length;
22632263
}
22642264

2265-
// add over this interval
2265+
// maximize over this interval
22662266

22672267
for (ix=adjStart ; ix<adjEnd ; ix++)
22682268
{ if (val > v[ix]) v[ix] = val; }

0 commit comments

Comments
 (0)