From fbe8fdeab7c1962bbbf242c9fb068c39153d1e18 Mon Sep 17 00:00:00 2001 From: Robin Dupret Date: Fri, 11 Sep 2020 16:07:31 +0200 Subject: [PATCH] DATAKV-323 - Fix typo in the reference documentation. Original pull request: #51. --- src/main/asciidoc/key-value-repositories.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/key-value-repositories.adoc b/src/main/asciidoc/key-value-repositories.adoc index 97ddc55..b3a26a9 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] ----