Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/reference/aggregation/gt.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $gt (aggregation)

.. expression:: $gt

Takes two values in an array and returns an integer. The returned
Takes two values in an array and returns an boolean. The returned
value is:

- ``true`` when the first value is *greater than* the second value.
Expand Down
2 changes: 1 addition & 1 deletion source/reference/aggregation/gte.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $gte (aggregation)

.. expression:: $gte

Takes two values in an array and returns an integer. The returned
Takes two values in an array and returns an boolean. The returned
value is:

- ``true`` when the first value is *greater than or equal* to the
Expand Down
2 changes: 1 addition & 1 deletion source/reference/aggregation/lt.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $lt (aggregation)

.. expression:: $lt

Takes two values in an array and returns an integer. The returned
Takes two values in an array and returns an boolean. The returned
value is:

- ``true`` when the first value is *less than* the second value.
Expand Down
2 changes: 1 addition & 1 deletion source/reference/aggregation/lte.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $lte (aggregation)

.. expression:: $lte

Takes two values in an array and returns an integer. The returned
Takes two values in an array and returns an boolean. The returned
value is:

- ``true`` when the first value is *less than or equal to* the
Expand Down
2 changes: 1 addition & 1 deletion source/reference/aggregation/ne.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $ne (aggregation)

.. expression:: $ne

Takes two values in an array returns an integer. The returned value
Takes two values in an array returns an boolean. The returned value
is:

- ``true`` when the values are **not equivalent**.
Expand Down