Skip to content

Commit 57fa522

Browse files
Fix @⁠HttpServiceClient example in reference manual
Closes gh-35363 Signed-off-by: NeatGuyCoding <[email protected]>
1 parent f64ff28 commit 57fa522

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

framework-docs/modules/ROOT/pages/integration/rest-clients.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1201,12 +1201,12 @@ annotate HTTP interfaces as follows:
12011201
[source,java,indent=0,subs="verbatim,quotes"]
12021202
----
12031203
@HttpServiceClient("echo")
1204-
public class EchoServiceA {
1204+
public interface EchoServiceA {
12051205
// ...
12061206
}
12071207
12081208
@HttpServiceClient("echo")
1209-
public class EchoServiceB {
1209+
public interface EchoServiceB {
12101210
// ...
12111211
}
12121212
----

0 commit comments

Comments
 (0)