Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3be512a

Browse files
committed
DOC: fix build
1 parent 5e17d66 commit 3be512a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2197,7 +2197,8 @@ def make_iterable(x):
21972197

21982198
@docstring.dedent_interpd
21992199
def barh(self, bottom, width, height=0.8, left=None, **kwargs):
2200-
"""Make a horizontal bar plot.
2200+
"""
2201+
Make a horizontal bar plot.
22012202
22022203
Make a horizontal bar plot with rectangles bounded by:
22032204
@@ -2263,7 +2264,7 @@ def barh(self, bottom, width, height=0.8, left=None, **kwargs):
22632264
bars) and by their bottom edges (for horizontal bars). If
22642265
'center', interpret the `bottom` argument as the
22652266
coordinates of the centers of the bars. To align on the
2266-
align bars on the top edge pass a negative `height`.
2267+
align bars on the top edge pass a negative 'height'.
22672268
22682269
log : boolean, optional, default: False
22692270
If true, sets the axis to be log scale
@@ -2285,7 +2286,6 @@ def barh(self, bottom, width, height=0.8, left=None, **kwargs):
22852286
See also
22862287
--------
22872288
bar: Plot a vertical bar plot.
2288-
22892289
"""
22902290

22912291
patches = self.bar(left=left, height=height, width=width,

0 commit comments

Comments
 (0)