From a16cdd2c413895197af0fd655d00863feb250707 Mon Sep 17 00:00:00 2001 From: rstoyanchev Date: Mon, 2 Jun 2025 12:38:19 +0100 Subject: [PATCH] Fix typo in reference docs --- framework-docs/modules/ROOT/pages/integration/rest-clients.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { }