diff --git a/examples/GraphicsLayout.py b/examples/GraphicsLayout.py
index 70da7e5c9dc45d67e0a22c41583e49afe8694f45..6917e54e82d134372e54abb2b3f27bc1eabda873 100644
--- a/examples/GraphicsLayout.py
+++ b/examples/GraphicsLayout.py
@@ -20,6 +20,8 @@ view.show()
 view.setWindowTitle('pyqtgraph example: GraphicsLayout')
 view.resize(800,600)
 
+
+
 ## Title at top
 text = """
 This example demonstrates the use of GraphicsLayout to arrange items in a grid.<br>
diff --git a/pyqtgraph/graphicsItems/GradientEditorItem.py b/pyqtgraph/graphicsItems/GradientEditorItem.py
index 92a4a6723e3ee6df1862e4c07c36b099ea078ea9..e16370f566ea2a5c2f91a63230c30a837ecad36b 100644
--- a/pyqtgraph/graphicsItems/GradientEditorItem.py
+++ b/pyqtgraph/graphicsItems/GradientEditorItem.py
@@ -349,7 +349,7 @@ class GradientEditorItem(TickSliderItem):
     with a GradientEditorItem that can be added to a GUI. 
     
     ================================ ===========================================================
-    **Signals**
+    **Signals:**
     sigGradientChanged(self)         Signal is emitted anytime the gradient changes. The signal 
                                      is emitted in real time while ticks are being dragged or 
                                      colors are being changed.
diff --git a/pyqtgraph/graphicsItems/InfiniteLine.py b/pyqtgraph/graphicsItems/InfiniteLine.py
index df1d5bdac86bb3ab14ec4fc238854d9cb0392327..08a55f83cdcd59b8a61ea57eb2ac966756e14248 100644
--- a/pyqtgraph/graphicsItems/InfiniteLine.py
+++ b/pyqtgraph/graphicsItems/InfiniteLine.py
@@ -15,7 +15,7 @@ class InfiniteLine(GraphicsObject):
     This line may be dragged to indicate a position in data coordinates.
     
     =============================== ===================================================
-    **Signals**
+    **Signals:**
     sigDragged(self)
     sigPositionChangeFinished(self)
     sigPositionChanged(self)
@@ -28,7 +28,7 @@ class InfiniteLine(GraphicsObject):
     
     def __init__(self, pos=None, angle=90, pen=None, movable=False, bounds=None):
         """
-        ==============  ==================================================================
+        =============== ==================================================================
         **Arguments:**
         pos             Position of the line. This can be a QPointF or a single value for
                         vertical/horizontal lines.
@@ -39,7 +39,7 @@ class InfiniteLine(GraphicsObject):
         movable         If True, the line can be dragged to a new position by the user.
         bounds          Optional [min, max] bounding values. Bounds are only valid if the
                         line is vertical or horizontal.
-        =============   ==================================================================
+        =============== ==================================================================
         """
         
         GraphicsObject.__init__(self)
diff --git a/pyqtgraph/widgets/ColorButton.py b/pyqtgraph/widgets/ColorButton.py
index 40f6740ff409212dd971486b5c6d0e0838d8dbdb..a0bb0c8eb1ccc521bd8241099f06ab420575ee4d 100644
--- a/pyqtgraph/widgets/ColorButton.py
+++ b/pyqtgraph/widgets/ColorButton.py
@@ -11,7 +11,7 @@ class ColorButton(QtGui.QPushButton):
     Button displaying a color and allowing the user to select a new color.
     
     ====================== ============================================================
-    **Signals**:
+    **Signals:**
     sigColorChanging(self) emitted whenever a new color is picked in the color dialog
     sigColorChanged(self)  emitted when the selected color is accepted (user clicks OK)
     ====================== ============================================================