From e8659da59b796e599d065891a81db6ff5f04bc66 Mon Sep 17 00:00:00 2001 From: Yanming Zhou Date: Mon, 29 May 2023 15:13:07 +0800 Subject: [PATCH] Fix error in SSL bundle documentation See gh-35665 --- .../spring-boot-docs/src/docs/asciidoc/features/ssl.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/ssl.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/ssl.adoc index 161446ebab8b..5f15b9720b89 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/ssl.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/ssl.adoc @@ -64,7 +64,7 @@ When used to secure an embedded web server, a `keystore` is typically configured private-key: "classpath:application.key" ---- -When used to secure an embedded web server, a `truststore` is typically configured with the server certificate as shown in this example: +When used to secure a client-side connection, a `truststore` is typically configured with the server certificate as shown in this example: [source,yaml,indent=0,subs="verbatim",configblocks] ----