From e90373f892959b924b706dcc0139b6c884f8bda5 Mon Sep 17 00:00:00 2001 From: Marcel Overdijk Date: Thu, 21 May 2020 16:14:32 +0200 Subject: [PATCH] DATAKV-322 - Polishing. Fix a typo. Original pull request: #48. --- 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] ----