From 6b60bb3ff028f79c0d6e0063be8f5dcb2bd9ab10 Mon Sep 17 00:00:00 2001 From: Ashwin Krishna Date: Sat, 29 Jun 2024 03:07:59 +0530 Subject: [PATCH] Changes related to typo mistake in chat client documentation --- .../src/main/antora/modules/ROOT/pages/api/chatclient.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chatclient.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chatclient.adoc index 39f2ff4d018..eb2887a46c5 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chatclient.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chatclient.adoc @@ -115,7 +115,7 @@ There is also an overloaded `entity` method with the signature `entity(Parameter List actorFilms = chatClient.prompt() .user("Generate the filmography of 5 movies for Tom Hanks and Bill Murray.") .call() - .entity(new ParameterizedTypeReference>() { + .entity(new ParameterizedTypeReference>() { }); ----