Browse Source

Fix @⁠HttpServiceClient example in reference manual

Closes gh-35363

Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com>
pull/35370/head
NeatGuyCoding 6 months ago committed by GitHub
parent
commit
57fa52262e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      framework-docs/modules/ROOT/pages/integration/rest-clients.adoc

4
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"] [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 {
// ... // ...
} }
---- ----

Loading…
Cancel
Save