test/lib/sun/hotspot/gc/GC.java
changeset 51616 b071f4fff1f1
parent 50525 767cdb97f103
child 52925 9c18c9d839d3
--- a/test/lib/sun/hotspot/gc/GC.java	Fri Aug 31 14:54:42 2018 -0700
+++ b/test/lib/sun/hotspot/gc/GC.java	Sat Sep 01 18:15:27 2018 +0200
@@ -31,7 +31,7 @@
  */
 public enum GC {
     /*
-     * Enum values much match CollectedHeap::Name
+     * Enum values must match CollectedHeap::Name
      */
     Serial(1),
     Parallel(2),
@@ -49,7 +49,7 @@
     }
 
     /**
-     * @return true if this GC is supported by the VM
+     * @return true if this GC is supported by the VM, i.e., it is built into the VM.
      */
     public boolean isSupported() {
         return WB.isGCSupported(name);