From 33ea589b00448cfa5e576869e353da62db5ce48a Mon Sep 17 00:00:00 2001 From: diguage Date: Thu, 6 Aug 2020 10:22:57 +0800 Subject: [PATCH] fix typo --- 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 4e8610f34347..1074a1d6ec69 100644 --- a/src/docs/asciidoc/integration.adoc +++ b/src/docs/asciidoc/integration.adoc @@ -320,7 +320,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<>(); @@ -341,7 +341,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 = ...;