Skip to content

Commit 89e99b3

Browse files
committed
DOCS-964 Fix agg operator return value type to boolean instead of integer
1 parent f75761a commit 89e99b3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

source/reference/aggregation/gt.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $gt (aggregation)
66

77
.. expression:: $gt
88

9-
Takes two values in an array and returns an integer. The returned
9+
Takes two values in an array and returns an boolean. The returned
1010
value is:
1111

1212
- ``true`` when the first value is *greater than* the second value.

source/reference/aggregation/gte.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $gte (aggregation)
66

77
.. expression:: $gte
88

9-
Takes two values in an array and returns an integer. The returned
9+
Takes two values in an array and returns an boolean. The returned
1010
value is:
1111

1212
- ``true`` when the first value is *greater than or equal* to the

source/reference/aggregation/lt.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $lt (aggregation)
66

77
.. expression:: $lt
88

9-
Takes two values in an array and returns an integer. The returned
9+
Takes two values in an array and returns an boolean. The returned
1010
value is:
1111

1212
- ``true`` when the first value is *less than* the second value.

source/reference/aggregation/lte.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $lte (aggregation)
66

77
.. expression:: $lte
88

9-
Takes two values in an array and returns an integer. The returned
9+
Takes two values in an array and returns an boolean. The returned
1010
value is:
1111

1212
- ``true`` when the first value is *less than or equal to* the

source/reference/aggregation/ne.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $ne (aggregation)
66

77
.. expression:: $ne
88

9-
Takes two values in an array returns an integer. The returned value
9+
Takes two values in an array returns an boolean. The returned value
1010
is:
1111

1212
- ``true`` when the values are **not equivalent**.

0 commit comments

Comments
 (0)