diff --git a/pyqtgraph/graphicsItems/ArrowItem.py b/pyqtgraph/graphicsItems/ArrowItem.py
index 74066fd7baf264cf8c0ca312d3e2c4f2675eac5a..7f6abbed0cba2368c3a6bd67e88d14ab03394b66 100644
--- a/pyqtgraph/graphicsItems/ArrowItem.py
+++ b/pyqtgraph/graphicsItems/ArrowItem.py
@@ -48,7 +48,7 @@ class ArrowItem(QtGui.QGraphicsPathItem):
         All arguments are optional:
         
         ======================  =================================================
-        **Keyword**
+        **Keyword Arguments**
         angle                   Orientation of the arrow in degrees. Default is
                                 0; arrow pointing to the left.
         headLen                 Length of the arrow head, from tip to base.
diff --git a/pyqtgraph/graphicsItems/LabelItem.py b/pyqtgraph/graphicsItems/LabelItem.py
index 57127a07ae2a914a38aef1b1ddcffc5d029783ac..37980ee323d7012cb1cc0b4de871e91d747c2a11 100644
--- a/pyqtgraph/graphicsItems/LabelItem.py
+++ b/pyqtgraph/graphicsItems/LabelItem.py
@@ -38,7 +38,7 @@ class LabelItem(GraphicsWidget, GraphicsWidgetAnchor):
         a CSS style string:
 
         ==================== ==============================
-        **Style**
+        **Style Arguments:**
         color                (str) example: 'CCFF00'
         size                 (str) example: '8pt'
         bold                 (bool)
diff --git a/pyqtgraph/graphicsItems/ScatterPlotItem.py b/pyqtgraph/graphicsItems/ScatterPlotItem.py
index 5310cf4d19f9454bfa2fba1934eec61e6d53b772..1c11fcf9b80b094811d81d58e2bb3fe2d20e63b6 100644
--- a/pyqtgraph/graphicsItems/ScatterPlotItem.py
+++ b/pyqtgraph/graphicsItems/ScatterPlotItem.py
@@ -253,13 +253,13 @@ class ScatterPlotItem(GraphicsObject):
         
     def setData(self, *args, **kargs):
         """
-        **Ordered**
+        **Ordered Arguments:**
         
         * If there is only one unnamed argument, it will be interpreted like the 'spots' argument.
         * If there are two unnamed arguments, they will be interpreted as sequences of x and y values.
         
         ====================== ===============================================================================================
-        **Keyword**
+        **Keyword Arguments:**
         *spots*                Optional list of dicts. Each dict specifies parameters for a single spot:
                                {'pos': (x,y), 'size', 'pen', 'brush', 'symbol'}. This is just an alternate method
                                of passing in data for the corresponding arguments.
diff --git a/pyqtgraph/parametertree/Parameter.py b/pyqtgraph/parametertree/Parameter.py
index f7cb42a0bdaa6811134745bf4cc1774501316e2c..1c75c3331626446df827a2f945880fc88756c732 100644
--- a/pyqtgraph/parametertree/Parameter.py
+++ b/pyqtgraph/parametertree/Parameter.py
@@ -108,7 +108,7 @@ class Parameter(QtCore.QObject):
         by most Parameter subclasses.
         
         =======================      =========================================================
-        **Keyword**
+        **Keyword Arguments:**
         name                         The name to give this Parameter. This is the name that
                                      will appear in the left-most column of a ParameterTree
                                      for this Parameter.