Fix @⁠HttpServiceClient example in reference manual

Closes gh-35363

Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com>
This commit is contained in:
NeatGuyCoding 2025-08-21 18:09:34 +08:00 committed by GitHub
parent f64ff2866a
commit 57fa52262e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1201,12 +1201,12 @@ annotate HTTP interfaces as follows:
[source,java,indent=0,subs="verbatim,quotes"] [source,java,indent=0,subs="verbatim,quotes"]
---- ----
@HttpServiceClient("echo") @HttpServiceClient("echo")
public class EchoServiceA { public interface EchoServiceA {
// ... // ...
} }
@HttpServiceClient("echo") @HttpServiceClient("echo")
public class EchoServiceB { public interface EchoServiceB {
// ... // ...
} }
---- ----