From d6f523b97b3ac5daf3ac944dbbcb37e295cf4f1f Mon Sep 17 00:00:00 2001 From: "Arend v. Reinersdorff" Date: Thu, 12 May 2022 21:10:13 +0200 Subject: [PATCH] Add missing space. --- 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 a58e9af991..b394b68ed0 100644 --- a/src/main/asciidoc/repositories.adoc +++ b/src/main/asciidoc/repositories.adoc @@ -1009,7 +1009,7 @@ class CustomizedUserRepositoryImpl implements CustomizedUserRepository { NOTE: The most important part of the class name that corresponds to the fragment interface is the `Impl` postfix. -The implementation itself does not depend on Spring Data and can be a regular Spring bean.Consequently, you can use standard dependency injection behavior to inject references to other beans (such as a `JdbcTemplate`), take part in aspects, and so on. +The implementation itself does not depend on Spring Data and can be a regular Spring bean. Consequently, you can use standard dependency injection behavior to inject references to other beans (such as a `JdbcTemplate`), take part in aspects, and so on. Then you can let your repository interface extend the fragment interface, as follows: