Skip to content

Commit 97b5c78

Browse files
committed
clearer comment
1 parent ce00de1 commit 97b5c78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Functions/array/arrayAUC.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class FunctionArrayAUC : public IFunction
131131

132132
area += (curr_fp - prev_fp) * (curr_tp + prev_tp) / 2.0;
133133

134-
/// Then divide the area to the area of rectangle.
134+
/// Then normalize it dividing by the area to the area of rectangle.
135135

136136
if (curr_tp == 0 || curr_tp == size)
137137
return std::numeric_limits<Float64>::quiet_NaN();

0 commit comments

Comments
 (0)