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

Skip to content

Commit b89baf3

Browse files
author
Hans Dembinski
committed
fixes after tacaswell's review
1 parent c4da247 commit b89baf3

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

lib/matplotlib/axes/_axes.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1860,7 +1860,7 @@ def bar(self, left, height, width=0.8, bottom=None, **kwargs):
18601860
specifies the color of errorbar(s)
18611861
default: None
18621862
1863-
capsize : integer, optional
1863+
capsize : scalar, optional
18641864
determines the length in points of the error bar caps
18651865
default: None, which will take the value from the
18661866
``errorbar.capsize`` :data:`rcParam<matplotlib.rcParams>`.
@@ -2190,7 +2190,7 @@ def barh(self, bottom, width, height=0.8, left=None, **kwargs):
21902190
ecolor : scalar or array-like, optional, default: None
21912191
specifies the color of errorbar(s)
21922192
2193-
capsize : integer, optional
2193+
capsize : scalar, optional
21942194
determines the length in points of the error bar caps
21952195
default: None, which will take the value from the
21962196
``errorbar.capsize`` :data:`rcParam<matplotlib.rcParams>`.
@@ -2634,7 +2634,8 @@ def errorbar(self, x, y, yerr=None, xerr=None,
26342634
26352635
*capsize*: scalar
26362636
The length of the error bar caps in points; if *None*, it will
2637-
take the value from ``errorbar.capsize`` :data:`rcParam<matplotlib.rcParams>`.
2637+
take the value from ``errorbar.capsize``
2638+
:data:`rcParam<matplotlib.rcParams>`.
26382639
26392640
*capthick*: scalar
26402641
An alias kwarg to *markeredgewidth* (a.k.a. - *mew*). This

0 commit comments

Comments
 (0)