Skip to content

Commit 25ab8bc

Browse files
committed
fix comment
1 parent 749864b commit 25ab8bc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

include/matx/transforms/reduce.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -804,9 +804,9 @@ template <typename T> class reduceOpMax {
804804
};
805805

806806
/**
807-
* Operator for performing an any reduction
807+
* Operator for performing an all reduction
808808
*
809-
* Performs a reduction of two values of type T by returning 1 if either
809+
* Performs a reduction of two values of type T by returning 1 if all
810810
* of the values are non-zero.
811811
*/
812812
template <typename T> class reduceOpAny {
@@ -822,9 +822,9 @@ template <typename T> class reduceOpAny {
822822
};
823823

824824
/**
825-
* Operator for performing an any reduction
825+
* Operator for performing an all reduction
826826
*
827-
* Performs a reduction of two values of type T by returning 1 if either
827+
* Performs a reduction of two values of type T by returning 1 if all
828828
* of the values are non-zero.
829829
*/
830830
template <typename T> class reduceOpAll {

0 commit comments

Comments
 (0)