From f5e961cb6cca7895a4188d315e879b9ed0cec0a6 Mon Sep 17 00:00:00 2001 From: Kirill Gavrilov Date: Sun, 21 Aug 2016 22:58:06 +0300 Subject: [PATCH] DATACMNS-903 - Fix typo in reference documentation. Original pull request: #174. --- 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 5b2197e9b..df5c725ae 100644 --- a/src/main/asciidoc/repositories.adoc +++ b/src/main/asciidoc/repositories.adoc @@ -510,7 +510,7 @@ class UserRepositoryImpl implements UserRepositoryCustom { NOTE: The most important bit for the class to be found is the `Impl` postfix of the name on it compared to the core repository interface (see below). -The implementation itself does not depend on Spring Data and can be a regular Spring bean. So you can use standard dependency injection behavior to inject references to other beans like a JdbTemplate, take part in aspects, and so on. +The implementation itself does not depend on Spring Data and can be a regular Spring bean. So you can use standard dependency injection behavior to inject references to other beans like a `JdbcTemplate`, take part in aspects, and so on. .Changes to the your basic repository interface ====