Skip to content

Commit 75b5a54

Browse files
committed
Polishing.
Fix asterisk callouts. See #3786
1 parent 0c481fe commit 75b5a54

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

src/main/asciidoc/reference/aggregation-framework.adoc

+6-9
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Note that, if you provide an input class as the first parameter to the `newAggre
5757
The MongoDB Aggregation Framework provides the following types of aggregation operations:
5858

5959
* Pipeline Aggregation Operators
60-
* Group Aggregation Operators
60+
* Group/Accumulator Aggregation Operators
6161
* Boolean Aggregation Operators
6262
* Comparison Aggregation Operators
6363
* Arithmetic Aggregation Operators
@@ -82,19 +82,16 @@ At the time of this writing, we provide support for the following Aggregation Op
8282
| `setEquals`, `setIntersection`, `setUnion`, `setDifference`, `setIsSubset`, `anyElementTrue`, `allElementsTrue`
8383

8484
| Group/Accumulator Aggregation Operators
85-
| `addToSet`, `covariancePop`, `covarianceSamp`, `expMovingAvg`, `first`, `last`, `max`, `min`, `avg`, `push`, `sum`, `(*count)`, `stdDevPop`, `stdDevSamp`
85+
| `addToSet`, `covariancePop`, `covarianceSamp`, `expMovingAvg`, `first`, `last`, `max`, `min`, `avg`, `push`, `sum`, `count` (+++*+++), `stdDevPop`, `stdDevSamp`
8686

8787
| Arithmetic Aggregation Operators
88-
| `abs`, `add` (via `plus`), `ceil`, `divide`, `exp`, `floor`, `ln`, `log`, `log10`, `mod`, `multiply`, `pow`, `round`, `sqrt`, `subtract` (*via `minus`), `trunc`
89-
90-
| Document Operators
91-
| `rank`, `denseRank`, `documentNumber`, `shift`
88+
| `abs`, `add` (+++*+++ via `plus`), `ceil`, `divide`, `exp`, `floor`, `ln`, `log`, `log10`, `mod`, `multiply`, `pow`, `round`, `sqrt`, `subtract` (+++*+++ via `minus`), `trunc`
9289

9390
| String Aggregation Operators
9491
| `concat`, `substr`, `toLower`, `toUpper`, `stcasecmp`, `indexOfBytes`, `indexOfCP`, `split`, `strLenBytes`, `strLenCP`, `substrCP`, `trim`, `ltrim`, `rtim`
9592

9693
| Comparison Aggregation Operators
97-
| `eq` (via: `is`), `gt`, `gte`, `lt`, `lte`, `ne`
94+
| `eq` (+++*+++ via `is`), `gt`, `gte`, `lt`, `lte`, `ne`
9895

9996
| Array Aggregation Operators
10097
| `arrayElementAt`, `arrayToObject`, `concatArrays`, `filter`, `in`, `indexOfArray`, `isArray`, `range`, `reverseArray`, `reduce`, `size`, `slice`, `zip`
@@ -124,9 +121,9 @@ At the time of this writing, we provide support for the following Aggregation Op
124121
| `function`, `accumulator`
125122
|===
126123

127-
* The operation is mapped or added by Spring Data MongoDB.
124+
+++*+++ The operation is mapped or added by Spring Data MongoDB.
128125

129-
Note that the aggregation operations not listed here are currently not supported by Spring Data MongoDB.Comparison aggregation operators are expressed as `Criteria` expressions.
126+
Note that the aggregation operations not listed here are currently not supported by Spring Data MongoDB. Comparison aggregation operators are expressed as `Criteria` expressions.
130127

131128
[[mongo.aggregation.projection]]
132129
=== Projection Expressions

0 commit comments

Comments
 (0)