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
@@ -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 {
// ...
}
----