Skip to content

Convert some dates.py docstrings to numpydoc #9102

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 3 commits into from
Aug 27, 2017
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
Fix sequence spelling
  • Loading branch information
dstansby committed Aug 27, 2017
commit d9965e366468503f9360e4eecfb5d07c05e80e65
4 changes: 2 additions & 2 deletions lib/matplotlib/dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def julian2num(j):

Returns
-------
float or sequency of floats
float or sequence of floats
Matplotlib date(s)
"""
if cbook.iterable(j):
Expand All @@ -403,7 +403,7 @@ def num2julian(n):

Returns
-------
float or sequency of floats
float or sequence of floats
Julian date(s)
"""
if cbook.iterable(n):
Expand Down