Comment heading changes.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@117152 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/lldbutil.py b/test/lldbutil.py
index e12bdf6..28912a6 100644
--- a/test/lldbutil.py
+++ b/test/lldbutil.py
@@ -6,11 +6,9 @@
 import sys
 import StringIO
 
-################################################
-#                                              #
-# Iterator for lldb aggregate data structures. #
-#                                              #
-################################################
+# ===========================================
+# Iterator for lldb aggregate data structures
+# ===========================================
 
 def lldb_iter(obj, getsize, getelem):
     """
@@ -33,11 +31,9 @@
         yield elem(i)
 
 
-########################################################
-#                                                      #
-# Convert some enum value to its string's counterpart. #
-#                                                      #
-########################################################
+# =================================================
+# Convert some enum value to its string counterpart
+# =================================================
 
 def StateTypeString(enum):
     """Returns the stateType string given an enum."""
@@ -88,11 +84,9 @@
         raise Exception("Unknown stopReason enum")
 
 
-#######################################################
-#                                                     #
-# Utility functions related to Threads and Processes. #
-#                                                     #
-#######################################################
+# ==================================================
+# Utility functions related to Threads and Processes
+# ==================================================
 
 def GetFunctionNames(thread):
     """