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

Skip to content

Commit 42eb539

Browse files
committed
DOC: fix typos
1 parent e89238b commit 42eb539

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

doc/users/whats_new/2015-05_filledstep.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Add step kwmargs to fill_between
2-
--------------------------------
1+
Add step kwargs to fill_between
2+
-------------------------------
33

44
Added ``step`` kwarg to `Axes.fill_between` to allow to fill between
55
lines drawn using the 'step' draw style. The values of ``step`` match

examples/api/filled_step.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ def filled_hist(ax, edges, values, bottoms=None, orientation='v',
2020
The axes to plot to
2121
2222
edges : array
23-
A an n+1 array giving the left edges of each bin and the
23+
A length n+1 array giving the left edges of each bin and the
2424
right edge of the last bin.
2525
2626
values : array
27-
A length n array of bin
27+
A length n array of bin counts or values
2828
2929
bottoms : scalar or array, optional
3030
A length n array of the bottom of the bars. If None, zero is used.
3131
3232
orientation : {'v', 'h'}
33-
Orientation of the histogram. 'v' is default value an has
33+
Orientation of the histogram. 'v' (default) has
3434
the bars increasing in the positive y-direction.
3535
3636
Returns
3737
-------
3838
ret : PolyCollection
39-
Added artist
39+
Artist added to the Axes
4040
"""
4141
print(orientation)
4242
if orientation not in set('hv'):

0 commit comments

Comments
 (0)