From 57fa52262e7ada6833f7640d91fef1fe673cdff3 Mon Sep 17 00:00:00 2001 From: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Date: Thu, 21 Aug 2025 18:09:34 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20@=E2=81=A0HttpServiceClient=20example=20i?= =?UTF-8?q?n=20reference=20manual?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes gh-35363 Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> --- .../modules/ROOT/pages/integration/rest-clients.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc b/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc index d81436315a1..21a9552395d 100644 --- a/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc +++ b/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc @@ -1201,12 +1201,12 @@ annotate HTTP interfaces as follows: [source,java,indent=0,subs="verbatim,quotes"] ---- @HttpServiceClient("echo") - public class EchoServiceA { + public interface EchoServiceA { // ... } @HttpServiceClient("echo") - public class EchoServiceB { + public interface EchoServiceB { // ... } ----