Skip to content

Commit 1e3a057

Browse files
committed
polish meta-data description
1 parent 65c974d commit 1e3a057

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/hateoas/HateoasProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class HateoasProperties {
2929

3030
/**
31-
* If HATEOAS support should be applied to the primary ObjectMapper.
31+
* Specify if HATEOAS support should be applied to the primary ObjectMapper.
3232
*/
3333
private boolean applyToPrimaryObjectMapper = true;
3434

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jackson/JacksonProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class JacksonProperties {
4545

4646
/**
4747
* Joda date time format string (yyyy-MM-dd HH:mm:ss). If not configured,
48-
* {@code date-format} will be used as a fallback if it is configured with a format
48+
* "date-format" will be used as a fallback if it is configured with a format
4949
* string.
5050
*/
5151
private String jodaDateTimeFormat;

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQProperties.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,17 +107,17 @@ public static class Embedded {
107107
private String dataDirectory;
108108

109109
/**
110-
* Comma-separate list of queues to create on startup.
110+
* Comma-separated list of queues to create on startup.
111111
*/
112112
private String[] queues = new String[0];
113113

114114
/**
115-
* Comma-separate list of topics to create on startup.
115+
* Comma-separated list of topics to create on startup.
116116
*/
117117
private String[] topics = new String[0];
118118

119119
/**
120-
* Cluster password. Randomly generated on startup by default
120+
* Cluster password. Randomly generated on startup by default.
121121
*/
122122
private String clusterPassword = UUID.randomUUID().toString();
123123

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/MongoProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class MongoProperties {
5353
private Integer port = null;
5454

5555
/**
56-
* Mmongo database URI. When set, host and port are ignored.
56+
* Mongo database URI. When set, host and port are ignored.
5757
*/
5858
private String uri = "mongodb://localhost/test";
5959

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/SecurityProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class SecurityProperties implements SecurityPrerequisite {
5656
public static final int IGNORED_ORDER = Ordered.HIGHEST_PRECEDENCE;
5757

5858
/**
59-
* The default order of Spring Security's Filter
59+
* Default order of Spring Security's Filter.
6060
*/
6161
public static final int DEFAULT_FILTER_ORDER = 0;
6262

@@ -239,7 +239,7 @@ public static class Basic {
239239
private String[] path = new String[] { "/**" };
240240

241241
/**
242-
* The security authorize mode to apply.
242+
* Security authorize mode to apply.
243243
*/
244244
private SecurityAuthorizeMode authorizeMode = SecurityAuthorizeMode.ROLE;
245245

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/GzipFilterProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class GzipFilterProperties {
4848
private Integer minGzipSize;
4949

5050
/**
51-
* The level used for deflate compression (0-9).
51+
* Level used for deflate compression (0-9).
5252
*/
5353
private Integer deflateCompressionLevel;
5454

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ public static class Tomcat {
316316
private String compression = "off";
317317

318318
/**
319-
* A comma-separated list of MIME types for which compression is used.
319+
* Comma-separated list of MIME types for which compression is used.
320320
*/
321321
private String compressableMimeTypes = "text/html,text/xml,text/plain";
322322

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/WebMvcProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class WebMvcProperties {
3939
private String locale;
4040

4141
/**
42-
* Date format to use (e.g. dd/MM/yyyy)
42+
* Date format to use (e.g. dd/MM/yyyy).
4343
*/
4444
private String dateFormat;
4545

spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
{
6363
"name": "spring.http.converters.preferred-json-mapper",
6464
"type": "java.lang.String",
65-
"description": "The preferred JSON mapper to use for HTTP message conversion."
65+
"description": "Preferred JSON mapper to use for HTTP message conversion."
6666
},
6767
{
6868
"name": "spring.jmx.enabled",

0 commit comments

Comments
 (0)