From 682e2283f0a7a2eb49e992ad1ffbbfe59b443737 Mon Sep 17 00:00:00 2001 From: Jasper Blues Date: Tue, 26 Jul 2016 16:05:52 +0800 Subject: [PATCH] DATACMNS-903 - Fix typo in reference documentation. Original pull request: #170. --- src/main/asciidoc/repositories.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/repositories.adoc b/src/main/asciidoc/repositories.adoc index 6b457730c..5e7a4ce98 100644 --- a/src/main/asciidoc/repositories.adoc +++ b/src/main/asciidoc/repositories.adoc @@ -308,7 +308,7 @@ This example shows a domain class using both JPA and Spring Data MongoDB annotat <> and <> are used for strict repository configuration identify repository candidates for a particular Spring Data module. Using multiple persistence technology-specific annotations on the same domain type is possible to reuse domain types across multiple persistence technologies, but then Spring Data is no longer able to determine a unique module to bind the repository. -The last way to distinguish repositories is scoping repository base packages. Base packages define the starting points for scanning for repository interface definitions which implies to have repository definitions located in the appropriate packages. By default, annotation-driven configuration uses the package of the configuration class. The <> mandatory. +The last way to distinguish repositories is scoping repository base packages. Base packages define the starting points for scanning for repository interface definitions which implies to have repository definitions located in the appropriate packages. By default, annotation-driven configuration uses the package of the configuration class. The <> is mandatory. .Annotation-driven configuration of base packages ====