From 38c227f22c6226c94187de68391748515802facf Mon Sep 17 00:00:00 2001 From: thecooldrop Date: Wed, 12 Feb 2025 06:36:32 +0100 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: EddĂș MelĂ©ndez Gonzales Signed-off-by: thecooldrop --- .../antora/modules/reference/pages/testing/testcontainers.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc index c0a9126363a5..2ea90dbb90f1 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/testcontainers.adoc @@ -26,7 +26,7 @@ In this case the lifecycle of the container instance is managed by Testcontainer Spring Boot supports Testcontainers modules, see the list [here](https://docs.spring.io/spring-boot/reference/testing/testcontainers.html#testing.testcontainers.service-connections) This method is often used in combination with javadoc:org.springframework.boot.testcontainers.service.connection.ServiceConnection[format=annotation]. -To use Testcontainer contains as Spring beans we need to create a configuration class declaring the container as bean: +To use Testcontainers contains as Spring beans we need to create a configuration class declaring the container as bean: include-code::beandeclaration/BeanDeclarationConfig[]