Skip to content

Commit 8070701

Browse files
committed
Merge branch '3.4.x'
2 parents 004ae93 + db68aea commit 8070701

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

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

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -100,22 +100,21 @@ 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
fieldWithPath("memory.garbageCollectors").description("Details for garbage collectors."),
115115
fieldWithPath("memory.garbageCollectors[].name").description("Name of of the garbage collector."),
116116
fieldWithPath("memory.garbageCollectors[].collectionCount")
117117
.description("Total number of collections that have occurred."));
118-
119118
}
120119

121120
private ResponseFieldsSnippet javaInfo() {

0 commit comments

Comments
 (0)