diff --git a/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc b/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc index 84e58506a97..04fbc612b1f 100644 --- a/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc +++ b/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc @@ -1156,7 +1156,7 @@ One way to declare HTTP Service groups is via `@ImportHttpServices` annotations [source,java,indent=0,subs="verbatim,quotes"] ---- @Configuration - @ImportHttpServices(group = "echo", types = {EchoServieA.class, EchoServiceB.class}) // <1> + @ImportHttpServices(group = "echo", types = {EchoServiceA.class, EchoServiceB.class}) // <1> @ImportHttpServices(group = "greeting", basePackageClasses = GreetServiceA.class) // <2> public class ClientConfig { }