File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -88,8 +88,9 @@ class UnitData(object):
88
88
def __init__ (self , data ):
89
89
"""Create mapping between unique categorical values
90
90
and numerical identifier
91
- Paramters
92
- ---------
91
+
92
+ Parameters
93
+ ----------
93
94
data: iterable
94
95
sequence of values
95
96
"""
Original file line number Diff line number Diff line change @@ -3751,7 +3751,7 @@ def inside_poly(points, verts):
3751
3751
# Make a closed polygon path
3752
3752
poly = Path (verts )
3753
3753
3754
- # Check to see which points are contained withing the Path
3754
+ # Check to see which points are contained within the Path
3755
3755
return [idx for idx , p in enumerate (points ) if poly .contains_point (p )]
3756
3756
3757
3757
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ def test_alpha_rcparam():
109
109
ax .plot (range (10 ), lw = 5 )
110
110
with mpl .rc_context (rc = {'legend.framealpha' : .75 }):
111
111
leg = plt .legend (['Longlabel that will go away' ], loc = 10 )
112
- # this alpha is going to be over-ridden by the rcparam whith
112
+ # this alpha is going to be over-ridden by the rcparam with
113
113
# sets the alpha of the patch to be non-None which causes the alpha
114
114
# value of the face color to be discarded. This behavior may not be
115
115
# ideal, but it is what it is and we should keep track of it changing
You can’t perform that action at this time.
0 commit comments