Skip to content

Commit 7f5591c

Browse files
committed
Polishing.
Fix asterisk callouts. See #3786
1 parent bf3b5de commit 7f5591c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

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

5656
* Pipeline Aggregation Operators
57-
* Group Aggregation Operators
57+
* Group/Accumulator Aggregation Operators
5858
* Boolean Aggregation Operators
5959
* Comparison Aggregation Operators
6060
* Arithmetic Aggregation Operators
@@ -78,17 +78,17 @@ At the time of this writing, we provide support for the following Aggregation Op
7878
| Set Aggregation Operators
7979
| `setEquals`, `setIntersection`, `setUnion`, `setDifference`, `setIsSubset`, `anyElementTrue`, `allElementsTrue`
8080

81-
| Group Aggregation Operators
82-
| `addToSet`, `first`, `last`, `max`, `min`, `avg`, `push`, `sum`, `(*count)`, `stdDevPop`, `stdDevSamp`
81+
| Group/Accumulator Aggregation Operators
82+
| `addToSet`, `first`, `last`, `max`, `min`, `avg`, `push`, `sum`, `count` (+++*+++), `stdDevPop`, `stdDevSamp`
8383

8484
| Arithmetic Aggregation Operators
85-
| `abs`, `add` (*via `plus`), `ceil`, `divide`, `exp`, `floor`, `ln`, `log`, `log10`, `mod`, `multiply`, `pow`, `round`, `sqrt`, `subtract` (*via `minus`), `trunc`
85+
| `abs`, `add` (+++*+++ via `plus`), `ceil`, `divide`, `exp`, `floor`, `ln`, `log`, `log10`, `mod`, `multiply`, `pow`, `round`, `sqrt`, `subtract` (+++*+++ via `minus`), `trunc`
8686

8787
| String Aggregation Operators
8888
| `concat`, `substr`, `toLower`, `toUpper`, `stcasecmp`, `indexOfBytes`, `indexOfCP`, `split`, `strLenBytes`, `strLenCP`, `substrCP`, `trim`, `ltrim`, `rtim`
8989

9090
| Comparison Aggregation Operators
91-
| `eq` (*via: `is`), `gt`, `gte`, `lt`, `lte`, `ne`
91+
| `eq` (+++*+++ via `is`), `gt`, `gte`, `lt`, `lte`, `ne`
9292

9393
| Array Aggregation Operators
9494
| `arrayElementAt`, `arrayToObject`, `concatArrays`, `filter`, `in`, `indexOfArray`, `isArray`, `range`, `reverseArray`, `reduce`, `size`, `slice`, `zip`
@@ -118,7 +118,7 @@ At the time of this writing, we provide support for the following Aggregation Op
118118
| `function`, `accumulator`
119119
|===
120120

121-
* The operation is mapped or added by Spring Data MongoDB.
121+
+++*+++ The operation is mapped or added by Spring Data MongoDB.
122122

123123
Note that the aggregation operations not listed here are currently not supported by Spring Data MongoDB. Comparison aggregation operators are expressed as `Criteria` expressions.
124124

0 commit comments

Comments
 (0)