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

Skip to content

[WIP] DOC Updated documentation of arrow function to numpy docs format. #7029

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 6 commits into from
Sep 24, 2016
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
FIX Repaired wording and whitespace problems
  • Loading branch information
mobando committed Sep 22, 2016
commit a008555de2f707bc07643d07cd89cad103499ed3
5 changes: 3 additions & 2 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4532,9 +4532,9 @@ def arrow(self, x, y, dx, dy, **kwargs):
y : float
Y-coordinate of the arrow base
dx : float
Length of arrow in x-coordinate
Length of arrow along x-coordinate
dy : float
Length of arrow in y-coordinate
Length of arrow along y-coordinate

Returns
-------
Expand Down Expand Up @@ -4563,6 +4563,7 @@ def arrow(self, x, y, dx, dy, **kwargs):
--------

.. plot:: mpl_examples/pylab_examples/arrow_demo.py
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please add a blank line after this? I am not entirely sure why, but python3.5 is unhappy…

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I wasn't clear: I meant after the ".. plot::" directive.


"""
# Strip away units for the underlying patch since units
# do not make sense to most patch-like code
Expand Down