From 7c03d3ad0739a81a67cfb38e1e1bb0e524a65747 Mon Sep 17 00:00:00 2001 From: Tran Ngoc Nhan Date: Sat, 17 Jan 2026 20:48:43 +0700 Subject: [PATCH] Remove duplicate word See gh-48874 Signed-off-by: Tran Ngoc Nhan --- .../src/docs/antora/modules/reference/pages/io/rest-client.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/rest-client.adoc b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/rest-client.adoc index 07649ae5522..8fd926c2db8 100644 --- a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/rest-client.adoc +++ b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/rest-client.adoc @@ -281,7 +281,7 @@ Instead of directly using a javadoc:org.springframework.web.client.RestClient[] HTTP Service interfaces defines a service contract by using methods that are annotated with javadoc:org.springframework.web.service.annotation.HttpExchange[format=annotation], or more typically the method specific variants (javadoc:org.springframework.web.service.annotation.GetExchange[format=annotation], javadoc:org.springframework.web.service.annotation.PostExchange[format=annotation], javadoc:org.springframework.web.service.annotation.DeleteExchange[format=annotation], etc). -For example, the following code defines an HTTP Service for an an "`echo`" API that will return a JSON object containing an echo of the request. +For example, the following code defines an HTTP Service for an "`echo`" API that will return a JSON object containing an echo of the request. include-code::EchoService[]