diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat-memory.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat-memory.adoc index 435751c8b56..00a41dab460 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat-memory.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat-memory.adoc @@ -111,7 +111,7 @@ If you'd rather create the `JdbcChatMemoryRepository` manually, you can do so by ---- ChatMemoryRepository chatMemoryRepository = JdbcChatMemoryRepository.builder() .jdbcTemplate(jdbcTemplate) - .dialect(new PostgresChatMemoryDialect()) + .dialect(new PostgresChatMemoryRepositoryDialect()) .build(); ChatMemory chatMemory = MessageWindowChatMemory.builder()