From 008aa48d5c97b5f5969662f9cab5b0b7594cf1b5 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 16 Sep 2021 14:10:54 +0200 Subject: [PATCH] Fix formatting for SQL `IN` clause example in ref docs See gh-27388 --- src/docs/asciidoc/data-access.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/data-access.adoc b/src/docs/asciidoc/data-access.adoc index fa0ccbe73f..edf4ccbe56 100644 --- a/src/docs/asciidoc/data-access.adoc +++ b/src/docs/asciidoc/data-access.adoc @@ -6027,8 +6027,8 @@ limit is 1000. In addition to the primitive values in the value list, you can create a `java.util.List` of object arrays. This list can support multiple expressions being defined for the `in` -clause, such as `select * from T_ACTOR where (id, last_name) in ((1, 'Johnson'), (2, -'Harrop'))`. This, of course, requires that your database supports this syntax. +clause, such as `+++select * from T_ACTOR where (id, last_name) in ((1, 'Johnson'), (2, +'Harrop'))+++`. This, of course, requires that your database supports this syntax. [[jdbc-complex-types]]