Skip to content

Commit b4678e0

Browse files
committed
DOC: fix typos in comment
1 parent 320f2e6 commit b4678e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

larray/core/plot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,9 +281,9 @@ def pie(self, y=None, legend=False, **kwds):
281281

282282
ax = self(kind='pie', y=y, legend=legend, **kwds)
283283

284-
# if we created the Axes and we have subplots, hide all x axis because as of now
284+
# if we created the Axes and have subplots, hide all x axes because as of now
285285
# (pandas 1.3.0 and matplotlib 3.3.4) there are some ugly and useless x axes
286-
# with a few ticks when have subplots in a vertical layout
286+
# with a few ticks when we have subplots in a vertical layout
287287
if 'ax' not in kwds and isinstance(ax, np.ndarray):
288288
for axes in ax.flat:
289289
axes.get_xaxis().set_visible(False)

0 commit comments

Comments
 (0)