From 25b8d64cd043bdc5aff0daabdc6b385b25523a5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EA=B1=B4=EC=98=81=28Parkgunyoung=29?= Date: Fri, 1 May 2026 01:47:42 +0900 Subject: [PATCH] Fix typo in HttpServiceProxyFactory example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes gh-36736 Signed-off-by: 박건영(Parkgunyoung) --- 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 4dd3ce2daed..04104de014f 100644 --- a/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc +++ b/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc @@ -1179,7 +1179,7 @@ built-in decorators to suppress 404 exceptions and return a `ResponseEntity` wit [source,java,indent=0,subs="verbatim,quotes"] ---- // For RestClient - HttpServiceProxyFactory factory = HttpServiceProxyFactory.builderFor(restCqlientAdapter) + HttpServiceProxyFactory factory = HttpServiceProxyFactory.builderFor(restClientAdapter) .exchangeAdapterDecorator(NotFoundRestClientAdapterDecorator::new) .build();