Skip to content

Commit db68aea

Browse files
committed
Polish
1 parent 41be61d commit db68aea

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/info/InfoEndpointDocumentationTests.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,17 @@ private ResponseFieldsSnippet processInfo() {
100100
.type(JsonFieldType.NUMBER),
101101
fieldWithPath("memory").description("Memory information."),
102102
fieldWithPath("memory.heap").description("Heap memory."),
103-
fieldWithPath("memory.heap.init").description("The number of bytes initially requested by the JVM."),
104-
fieldWithPath("memory.heap.used").description("The number of bytes currently being used."),
105-
fieldWithPath("memory.heap.committed").description("The number of bytes committed for JVM use."),
103+
fieldWithPath("memory.heap.init").description("Number of bytes initially requested by the JVM."),
104+
fieldWithPath("memory.heap.used").description("Number of bytes currently being used."),
105+
fieldWithPath("memory.heap.committed").description("Number of bytes committed for JVM use."),
106106
fieldWithPath("memory.heap.max")
107-
.description("The maximum number of bytes that can be used by the JVM (or -1)."),
107+
.description("Maximum number of bytes that can be used by the JVM (or -1)."),
108108
fieldWithPath("memory.nonHeap").description("Non-heap memory."),
109-
fieldWithPath("memory.nonHeap.init").description("The number of bytes initially requested by the JVM."),
110-
fieldWithPath("memory.nonHeap.used").description("The number of bytes currently being used."),
111-
fieldWithPath("memory.nonHeap.committed").description("The number of bytes committed for JVM use."),
109+
fieldWithPath("memory.nonHeap.init").description("Number of bytes initially requested by the JVM."),
110+
fieldWithPath("memory.nonHeap.used").description("Number of bytes currently being used."),
111+
fieldWithPath("memory.nonHeap.committed").description("Number of bytes committed for JVM use."),
112112
fieldWithPath("memory.nonHeap.max")
113-
.description("The maximum number of bytes that can be used by the JVM (or -1)."));
113+
.description("Maximum number of bytes that can be used by the JVM (or -1)."));
114114
}
115115

116116
private ResponseFieldsSnippet javaInfo() {

0 commit comments

Comments
 (0)