From a22e62d1fa3df655dbd68e54fde182e9f0f4fdc9 Mon Sep 17 00:00:00 2001 From: ASHWIN KRISHNA K <78296172+AshwinKrishnaK@users.noreply.github.com> Date: Tue, 2 Jul 2024 00:23:19 +0530 Subject: [PATCH] Changes related to typo mistake in chat client documentation (#980) Resolves https://github.com/spring-projects/spring-ai/issues/966 --- .../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 39f2ff4d0..eb2887a46 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>() { }); ----