Nomenclature improvements.

Change-Id: I809ab04b6ee74bb8141791e1f3f5d7e3f4efb61c
diff --git a/src/heap.cc b/src/heap.cc
index b12ff2d..d847682 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -482,11 +482,9 @@
     return ptr;
   }
 
-  // Most allocations should have succeeded by now, so the heap is
-  // really full, really fragmented, or the requested size is really
-  // big.  Do another GC, collecting SoftReferences this time.  The VM
-  // spec requires that all SoftReferences have been collected and
-  // cleared before throwing an OOME.
+  // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
+  // or the requested size is really big. Do another GC, collecting SoftReferences this time. The
+  // VM spec requires that all SoftReferences have been collected and cleared before throwing OOME.
 
   // OLD-TODO: wait for the finalizers from the previous GC to finish
   VLOG(gc) << "Forcing collection of SoftReferences for " << PrettySize(alloc_size) << " allocation";