12e8a62
Description: don't separate param and its argument with a space
12e8a62
12e8a62
--- a/lib/mpl_toolkits/axes_grid1/axes_divider.py
12e8a62
+++ b/lib/mpl_toolkits/axes_grid1/axes_divider.py
12e8a62
@@ -201,12 +201,12 @@ class Divider(object):
12e8a62
     def locate(self, nx, ny, nx1=None, ny1=None, axes=None, renderer=None):
12e8a62
         """
12e8a62
 
12e8a62
-        :param nx, nx1: Integers specifying the column-position of the
12e8a62
+        :param nx,nx1: Integers specifying the column-position of the
12e8a62
           cell. When nx1 is None, a single nx-th column is
12e8a62
           specified. Otherwise location of columns spanning between nx
12e8a62
           to nx1 (but excluding nx1-th column) is specified.
12e8a62
 
12e8a62
-        :param ny, ny1: same as nx and nx1, but for row positions.
12e8a62
+        :param ny,ny1: same as nx and nx1, but for row positions.
12e8a62
         """
12e8a62
 
dd3b8ab
         figW, figH = self._fig.get_size_inches()
dd3b8ab
dd3b8ab
@@ -250,12 +250,12 @@ class Divider(object):
12e8a62
         (:class:`mpl_toolkits.axes_grid.axes_divider.AxesLocator`) for
12e8a62
         specified cell.
12e8a62
 
12e8a62
-        :param nx, nx1: Integers specifying the column-position of the
12e8a62
+        :param nx,nx1: Integers specifying the column-position of the
12e8a62
           cell. When nx1 is None, a single nx-th column is
12e8a62
           specified. Otherwise location of columns spanning between nx
12e8a62
           to nx1 (but excluding nx1-th column) is specified.
12e8a62
 
12e8a62
-        :param ny, ny1: same as nx and nx1, but for row positions.
12e8a62
+        :param ny,ny1: same as nx and nx1, but for row positions.
12e8a62
         """
12e8a62
         return AxesLocator(self, nx, ny, nx1, ny1)
12e8a62
 
dd3b8ab
@@ -298,12 +298,12 @@ class AxesLocator(object):
12e8a62
         """
12e8a62
         :param axes_divider: An instance of AxesDivider class.
12e8a62
 
12e8a62
-        :param nx, nx1: Integers specifying the column-position of the
12e8a62
+        :param nx,nx1: Integers specifying the column-position of the
12e8a62
           cell. When nx1 is None, a single nx-th column is
12e8a62
           specified. Otherwise location of columns spanning between nx
12e8a62
           to nx1 (but excluding nx1-th column) is is specified.
12e8a62
 
12e8a62
-        :param ny, ny1: same as nx and nx1, but for row positions.
12e8a62
+        :param ny,ny1: same as nx and nx1, but for row positions.
12e8a62
         """
12e8a62
         self._axes_divider = axes_divider
12e8a62