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

Skip to content

Updated typo in fill_between docstring #11988

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 31, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4966,11 +4966,11 @@ def fill_between(self, x, y1, y2=0, where=None, interpolate=False,
By default, the nodes of the polygon defining the filled region
will only be placed at the positions in the *x* array. Such a
polygon cannot describe the above semantics close to the
intersection. The x-sections containing the intersecion are
intersection. The x-sections containing the intersection are
simply clipped.

Setting *interpolate* to *True* will calculate the actual
interscection point and extend the filled region up to this point.
intersection point and extend the filled region up to this point.

step : {'pre', 'post', 'mid'}, optional
Define *step* if the filling should be a step function,
Expand Down