11"""
2- The axes_divider module provide helper classes to adjust the positions of
3- multiple axes at the drawing time.
2+ The axes_divider module provides helper classes to adjust the positions of
3+ multiple axes at drawing time.
44
5- Divider: this is the class that is used calculates the axes
5+ Divider: this is the class that is used to calculate the axes
66 position. It divides the given rectangular area into several sub
77 rectangles. You initialize the divider by setting the horizontal
8- and vertical list of sizes that the division will be based on. You
8+ and vertical lists of sizes that the division will be based on. You
99 then use the new_locator method, whose return value is a callable
1010 object that can be used to set the axes_locator of the axes.
1111
@@ -31,7 +31,7 @@ class Divider(object):
3131 horizontal and vertical lists of sizes
3232 (:mod:`mpl_toolkits.axes_grid.axes_size`) that the division will
3333 be based on. You then use the new_locator method to create a
34- callable object that can be used to as the axes_locator of the
34+ callable object that can be used as the axes_locator of the
3535 axes.
3636 """
3737
@@ -49,7 +49,7 @@ def __init__(self, fig, pos, horizontal, vertical,
4949 for vertical division
5050 :param aspect: if True, the overall rectangular area is reduced
5151 so that the relative part of the horizontal and
52- vertical scales have same scale.
52+ vertical scales have the same scale.
5353 :param anchor: Determine how the reduced rectangle is placed
5454 when aspect is True.
5555 """
0 commit comments