From af8b32c7fa35ae44a75f3327abda6e1c968e8a1a Mon Sep 17 00:00:00 2001 From: Tran Ngoc Nhan Date: Sun, 23 Feb 2025 22:01:00 +0700 Subject: [PATCH] Fix typo fold attribute 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 8bfbe505f750..a12403c9e060 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 int getPort() { 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 861b501975b4..833630c5bda4 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 int getPort() { public void setPort(int port) { this.port = port; } - // @fold:off // getters/setters ... + // @fold:off }