diff --git a/src/main/asciidoc/key-value-repositories.adoc b/src/main/asciidoc/key-value-repositories.adoc index 97ddc555..b3a26a9c 100644 --- a/src/main/asciidoc/key-value-repositories.adoc +++ b/src/main/asciidoc/key-value-repositories.adoc @@ -46,7 +46,7 @@ In its very basic shape, the `KeyValueTemplate` uses a `MapAdapter` that wraps a NOTE: The used `KeyValueAdapter` does the heavy lifting when it comes to storing and retrieving data. The data structure influences performance and multi-threading behavior. -You can use a different type or preinitialize the adapter with some values, and you can do so byusing various constructors on `MapKeyValueAdapter`, as the following example shows: +You can use a different type or preinitialize the adapter with some values, and you can do so by using various constructors on `MapKeyValueAdapter`, as the following example shows: [source, java] ----