@@ -79,7 +79,7 @@ Changes in 1.2.x
7979 projection = kwargs.pop('projection', None)
8080 if ispolar:
8181 if projection is not None and projection != 'polar':
82- raise ValuError ('polar and projection args are inconsistent')
82+ raise ValueError ('polar and projection args are inconsistent')
8383 projection = 'polar'
8484 ax = projection_factory(projection, self, rect, **kwargs)
8585 key = self._make_key(*args, **kwargs)
@@ -807,7 +807,7 @@ Changes for 0.91.0
807807
808808* Changed :func: `cbook.reversed ` so it yields a tuple rather than a
809809 (index, tuple). This agrees with the python reversed builtin,
810- and cbook only defines reversed if python doesnt provide the
810+ and cbook only defines reversed if python doesn't provide the
811811 builtin.
812812
813813* Made skiprows=1 the default on :func: `csv2rec `
@@ -892,13 +892,13 @@ Changes for 0.90.1
892892 units.AxisInfo object rather than a tuple. This will make it
893893 easier to add axis info functionality (eg I added a default label
894894 on this iteration) w/o having to change the tuple length and hence
895- the API of the client code everytime new functionality is added.
895+ the API of the client code every time new functionality is added.
896896 Also, units.ConversionInterface.convert_to_value is now simply
897897 named units.ConversionInterface.convert.
898898
899899 Axes.errorbar uses Axes.vlines and Axes.hlines to draw its error
900900 limits int he vertical and horizontal direction. As you'll see
901- in the changes below, these funcs now return a LineCollection
901+ in the changes below, these functions now return a LineCollection
902902 rather than a list of lines. The new return signature for
903903 errorbar is ylins, caplines, errorcollections where
904904 errorcollections is a xerrcollection, yerrcollection
@@ -983,7 +983,7 @@ Changes for 0.87.7
983983 markeredgecolor and markerfacecolor cannot be configured in
984984 matplotlibrc any more. Instead, markers are generally colored
985985 automatically based on the color of the line, unless marker colors
986- are explicitely set as kwargs - NN
986+ are explicitly set as kwargs - NN
987987
988988 Changed default comment character for load to '#' - JDH
989989
@@ -1198,7 +1198,7 @@ Changes for 0.82
11981198
11991199 I see that hist uses the linspace function to create the bins
12001200 and then uses searchsorted to put the values in their correct
1201- bin. Thats all good but I am confused over the use of linspace
1201+ bin. That's all good but I am confused over the use of linspace
12021202 for the bin creation. I wouldn't have thought that it does
12031203 what is needed, to quote the docstring it creates a "Linear
12041204 spaced array from min to max". For it to work correctly
@@ -1394,7 +1394,7 @@ Changes for 0.65.1
13941394
13951395 removed add_axes and add_subplot from backend_bases. Use
13961396 figure.add_axes and add_subplot instead. The figure now manages the
1397- current axes with gca and sca for get and set current axe . If you
1397+ current axes with gca and sca for get and set current axes . If you
13981398 have code you are porting which called, eg, figmanager.add_axes, you
13991399 can now simply do figmanager.canvas.figure.add_axes.
14001400
@@ -1462,7 +1462,7 @@ Changes for 0.61
14621462
14631463 canvas.connect is now deprecated for event handling. use
14641464 mpl_connect and mpl_disconnect instead. The callback signature is
1465- func(event) rather than func(widget, evet )
1465+ func(event) rather than func(widget, event )
14661466
14671467Changes for 0.60
14681468================
@@ -1626,7 +1626,7 @@ Object constructors
16261626 You no longer pass the bbox, dpi, or transforms to the various
16271627 Artist constructors. The old way or creating lines and rectangles
16281628 was cumbersome because you had to pass so many attributes to the
1629- Line2D and Rectangle classes not related directly to the gemoetry
1629+ Line2D and Rectangle classes not related directly to the geometry
16301630 and properties of the object. Now default values are added to the
16311631 object when you call axes.add_line or axes.add_patch, so they are
16321632 hidden from the user.
@@ -1655,18 +1655,18 @@ Transformations
16551655
16561656 The entire transformation architecture has been rewritten.
16571657 Previously the x and y transformations where stored in the xaxis and
1658- yaxis insstances . The problem with this approach is it only allows
1658+ yaxis instances . The problem with this approach is it only allows
16591659 for separable transforms (where the x and y transformations don't
16601660 depend on one another). But for cases like polar, they do. Now
16611661 transformations operate on x,y together. There is a new base class
16621662 matplotlib.transforms.Transformation and two concrete
1663- implemetations , matplotlib.transforms.SeparableTransformation and
1663+ implementations , matplotlib.transforms.SeparableTransformation and
16641664 matplotlib.transforms.Affine. The SeparableTransformation is
16651665 constructed with the bounding box of the input (this determines the
16661666 rectangular coordinate system of the input, ie the x and y view
1667- limits), the bounding box of the display, and possibily nonlinear
1667+ limits), the bounding box of the display, and possibly nonlinear
16681668 transformations of x and y. The 2 most frequently used
1669- transformations, data cordinates -> display and axes coordinates ->
1669+ transformations, data coordinates -> display and axes coordinates ->
16701670 display are available as ax.transData and ax.transAxes. See
16711671 alignment_demo.py which uses axes coords.
16721672
@@ -1796,7 +1796,7 @@ Changes for 0.42
17961796
17971797 * backend_bases.AxisTextBase is now text.Text module
17981798
1799- * All the erase and reset functionality removed frmo AxisText - not
1799+ * All the erase and reset functionality removed from AxisText - not
18001800 needed with double buffered drawing. Ditto with state change.
18011801 Text instances have a get_prop_tup method that returns a hashable
18021802 tuple of text properties which you can use to see if text props
0 commit comments