Skip to content

Commit 10447af

Browse files
Patouchechristophstrobl
authored andcommitted
Fix typo in reference documentation.
Closes: #4268
1 parent c9dfd60 commit 10447af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/asciidoc/reference/mongo-repositories-aggregation.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The definition may contain simple placeholders like `?0` as well as https://docs
99
====
1010
[source,java]
1111
----
12-
public interface PersonRepository extends CrudReppsitory<Person, String> {
12+
public interface PersonRepository extends CrudRepository<Person, String> {
1313
1414
@Aggregation("{ $group: { _id : $lastname, names : { $addToSet : $firstname } } }")
1515
List<PersonAggregate> groupByLastnameAndFirstnames(); <1>
@@ -82,7 +82,7 @@ Use the `@Meta` annotation to set those options via `maxExecutionTimeMs`, `comme
8282

8383
[source,java]
8484
----
85-
interface PersonRepository extends CrudReppsitory<Person, String> {
85+
interface PersonRepository extends CrudRepository<Person, String> {
8686
8787
@Meta(allowDiskUse = true)
8888
@Aggregation("{ $group: { _id : $lastname, names : { $addToSet : $firstname } } }")
@@ -99,7 +99,7 @@ Or use `@Meta` to create your own annotation as shown in the sample below.
9999
@Meta(allowDiskUse = true)
100100
@interface AllowDiskUse { }
101101
102-
interface PersonRepository extends CrudReppsitory<Person, String> {
102+
interface PersonRepository extends CrudRepository<Person, String> {
103103
104104
@AllowDiskUse
105105
@Aggregation("{ $group: { _id : $lastname, names : { $addToSet : $firstname } } }")

0 commit comments

Comments
 (0)