diff options
author | Mark Wiebe <mwiebe@enthought.com> | 2011-07-19 14:45:16 -0500 |
---|---|---|
committer | Mark Wiebe <mwiebe@enthought.com> | 2011-07-19 14:45:16 -0500 |
commit | 1d3add610afc367d59bdc0c40a16cacf766a48a9 (patch) | |
tree | ee10ea7d84cd135f6589a329d35a3a22de5e919e /doc | |
parent | 4af52375dbd720dffc55b49f48bb59e8587ed762 (diff) | |
download | numpy-1d3add610afc367d59bdc0c40a16cacf766a48a9.tar.gz |
DOC: datetime: hyperlink busday_count and is_busday functions in datetime doc
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/reference/arrays.datetime.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/arrays.datetime.rst b/doc/source/reference/arrays.datetime.rst index ced107571..541f97884 100644 --- a/doc/source/reference/arrays.datetime.rst +++ b/doc/source/reference/arrays.datetime.rst @@ -293,7 +293,7 @@ in an optimized form. np.is_busday(): ``````````````` -To test a datetime64 value to see if it is a valid day, use np.is_busday(). +To test a datetime64 value to see if it is a valid day, use :func:`is_busday`. .. admonition:: Example @@ -310,7 +310,7 @@ To test a datetime64 value to see if it is a valid day, use np.is_busday(). np.busday_count(): `````````````````` To find how many valid days there are in a specified range of datetime64 -dates, use np.busday_count(): +dates, use :func:`busday_count`: .. admonition:: Example |