From ae2cfebd937fc1042fe90338687f62c5e1020a10 Mon Sep 17 00:00:00 2001 From: Tran Ngoc Nhan Date: Sun, 23 Feb 2025 22:01:00 +0700 Subject: [PATCH] Fix typo in fold attribute See gh-44413 Signed-off-by: Tran Ngoc Nhan --- .../automaticmetadatageneration/MyServerProperties.java | 2 +- .../nestedproperties/MyServerProperties.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/appendix/configurationmetadata/annotationprocessor/automaticmetadatageneration/MyServerProperties.java b/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/appendix/configurationmetadata/annotationprocessor/automaticmetadatageneration/MyServerProperties.java index fdc5f25876..2dd469ef1a 100644 --- a/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/appendix/configurationmetadata/annotationprocessor/automaticmetadatageneration/MyServerProperties.java +++ b/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/appendix/configurationmetadata/annotationprocessor/automaticmetadatageneration/MyServerProperties.java @@ -60,6 +60,6 @@ public class MyServerProperties { public void setPort(int port) { this.port = port; } - // fold:off + // @fold:off } diff --git a/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/appendix/configurationmetadata/annotationprocessor/automaticmetadatageneration/nestedproperties/MyServerProperties.java b/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/appendix/configurationmetadata/annotationprocessor/automaticmetadatageneration/nestedproperties/MyServerProperties.java index 67a35712c6..75654ce80e 100644 --- a/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/appendix/configurationmetadata/annotationprocessor/automaticmetadatageneration/nestedproperties/MyServerProperties.java +++ b/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/appendix/configurationmetadata/annotationprocessor/automaticmetadatageneration/nestedproperties/MyServerProperties.java @@ -65,7 +65,7 @@ public class MyServerProperties { public void setPort(int port) { this.port = port; } - // @fold:off // getters/setters ... + // @fold:off }