From 5cb2cc2466dac275207a81f4095cedaf36257422 Mon Sep 17 00:00:00 2001 From: diguage Date: Thu, 6 Aug 2020 10:22:57 +0800 Subject: [PATCH] Fix asciidoctor syntax for source See gh-25539 --- src/docs/asciidoc/integration.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/integration.adoc b/src/docs/asciidoc/integration.adoc index 80c51376a75c..1b905d5d6cff 100644 --- a/src/docs/asciidoc/integration.adoc +++ b/src/docs/asciidoc/integration.adoc @@ -1217,7 +1217,7 @@ To send multipart data, you need to provide a `MultiValueMap` wh may be an `Object` for part content, a `Resource` for a file part, or an `HttpEntity` for part content with headers. For example: -[source,java,intent=0] +[source,java,indent=0] [subs="verbatim,quotes"] ---- MultiValueMap parts = new LinkedMultiValueMap<>(); @@ -1238,7 +1238,7 @@ explicitly provide the `MediaType` with an `HttpEntity` wrapper. Once the `MultiValueMap` is ready, you can pass it to the `RestTemplate`, as show below: -[source,java,intent=0] +[source,java,indent=0] [subs="verbatim,quotes"] ---- MultiValueMap parts = ...;