From f5c00b69783ee9f2409e5c7634678d5cb5a5609c Mon Sep 17 00:00:00 2001 From: Hippolyte Durix Date: Mon, 27 May 2019 21:09:04 +0200 Subject: [PATCH] DATAMONGO-2288 - Fix wrong indentation on documentation code sample. Original pull request: #758. --- src/main/asciidoc/reference/client-session-transactions.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/reference/client-session-transactions.adoc b/src/main/asciidoc/reference/client-session-transactions.adoc index a0584841b..7e345c496 100644 --- a/src/main/asciidoc/reference/client-session-transactions.adoc +++ b/src/main/asciidoc/reference/client-session-transactions.adoc @@ -163,7 +163,7 @@ txTemplate.execute(new TransactionCallbackWithoutResult() { process(step); - template.update(Step.class).apply(Update.set("state", // ... + template.update(Step.class).apply(Update.set("state", // ... }; }); ----