Skip to content

Commit 6e38610

Browse files
committed
Polishing.
Fix asterisk callouts. See #3786
1 parent e7af70e commit 6e38610

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
@@ -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
@@ -81,17 +81,17 @@ At the time of this writing, we provide support for the following Aggregation Op
8181
| Set Aggregation Operators
8282
| `setEquals`, `setIntersection`, `setUnion`, `setDifference`, `setIsSubset`, `anyElementTrue`, `allElementsTrue`
8383

84-
| Group Aggregation Operators
85-
| `addToSet`, `first`, `last`, `max`, `min`, `avg`, `push`, `sum`, `(*count)`, `stdDevPop`, `stdDevSamp`
84+
| Group/Accumulator Aggregation Operators
85+
| `addToSet`, `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`
88+
| `abs`, `add` (+++*+++ via `plus`), `ceil`, `divide`, `exp`, `floor`, `ln`, `log`, `log10`, `mod`, `multiply`, `pow`, `round`, `sqrt`, `subtract` (+++*+++ via `minus`), `trunc`
8989

9090
| String Aggregation Operators
9191
| `concat`, `substr`, `toLower`, `toUpper`, `stcasecmp`, `indexOfBytes`, `indexOfCP`, `split`, `strLenBytes`, `strLenCP`, `substrCP`, `trim`, `ltrim`, `rtim`
9292

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

9696
| Array Aggregation Operators
9797
| `arrayElementAt`, `arrayToObject`, `concatArrays`, `filter`, `in`, `indexOfArray`, `isArray`, `range`, `reverseArray`, `reduce`, `size`, `slice`, `zip`
@@ -121,7 +121,7 @@ At the time of this writing, we provide support for the following Aggregation Op
121121
| `function`, `accumulator`
122122
|===
123123

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

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

0 commit comments

Comments
 (0)