diff --git a/examples/shapes_and_collections/arrow_guide.py b/examples/shapes_and_collections/arrow_guide.py index 1c77d8a7e98b..e895b48cdd7b 100644 --- a/examples/shapes_and_collections/arrow_guide.py +++ b/examples/shapes_and_collections/arrow_guide.py @@ -14,7 +14,7 @@ or the axis labels. Arrows consist of a head (and possibly a tail) and a stem drawn between a -start point and and end point, called 'anchor points' from now on. +start point and end point, called 'anchor points' from now on. Here we show three use cases for plotting arrows, depending on whether the head or anchor points need to be fixed in data or display space: diff --git a/lib/matplotlib/_layoutbox.py b/lib/matplotlib/_layoutbox.py index 4dbe80facccb..0109d7141e8b 100644 --- a/lib/matplotlib/_layoutbox.py +++ b/lib/matplotlib/_layoutbox.py @@ -122,7 +122,7 @@ def constrain_margins(self): Margin minimums are set to make room for axes decorations. However, the margins can be larger if we are mathicng the position size to - otehr axes. + other axes. """ sol = self.solver diff --git a/tutorials/colors/colormap-manipulation.py b/tutorials/colors/colormap-manipulation.py index 3c732f4f7ff7..e79b9dd60e22 100644 --- a/tutorials/colors/colormap-manipulation.py +++ b/tutorials/colors/colormap-manipulation.py @@ -40,7 +40,7 @@ ############################################################################## # The list of colors that comprise the colormap can be directly accessed using # the ``colors`` property, -# or it can be acccessed indirectly by calling ``viridis`` with an array +# or it can be accessed indirectly by calling ``viridis`` with an array # of values matching the length of the colormap. Note that the returned list # is in the form of an RGBA Nx4 array, where N is the length of the colormap.